diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-11-12 18:03:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-11-12 18:03:43 +0000 |
commit | 085320f505022f7fbc53b229ef1dc31826e66c34 (patch) | |
tree | ee63fa3227fc3d9d1bb96caf84fdef15b273ae58 /libio/iofread_u.c | |
parent | 055778f3963336f41210feb4728a8d32da1d74fe (diff) | |
download | glibc-085320f505022f7fbc53b229ef1dc31826e66c34.tar.gz glibc-085320f505022f7fbc53b229ef1dc31826e66c34.tar.xz glibc-085320f505022f7fbc53b229ef1dc31826e66c34.zip |
(abmon): Remove spaces.
1998-11-12 Ulrich Drepper <drepper@cygnus.com> * locales/el_GR (abmon): Remove spaces at end of strings.
Diffstat (limited to 'libio/iofread_u.c')
-rw-r--r-- | libio/iofread_u.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libio/iofread_u.c b/libio/iofread_u.c index 69627165eb..aeef514ed2 100644 --- a/libio/iofread_u.c +++ b/libio/iofread_u.c @@ -26,6 +26,8 @@ #include "libioP.h" #include <stdio.h> +#undef fread_unlocked + _IO_size_t fread_unlocked (buf, size, count, fp) void *buf; @@ -33,7 +35,7 @@ fread_unlocked (buf, size, count, fp) _IO_size_t count; _IO_FILE *fp; { - _IO_size_t bytes_requested = size*count; + _IO_size_t bytes_requested = size * count; _IO_size_t bytes_read; CHECK_FILE (fp, 0); if (bytes_requested == 0) |