X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fcrtdll%2Fstdio%2Frewind.c;h=013e2fcc38ad24f4e91bae935171633216c1e2e1;hp=099b6b7dabb00083cfd684d76dfecb4fca89cc97;hb=03af8776dc14167b078911b0c7c5327d1bcdd128;hpb=f4077c1bf64ef89d74a8d4822d2d7aada3ba9927 diff --git a/lib/crtdll/stdio/rewind.c b/lib/crtdll/stdio/rewind.c index 099b6b7..013e2fc 100644 --- a/lib/crtdll/stdio/rewind.c +++ b/lib/crtdll/stdio/rewind.c @@ -1,8 +1,8 @@ /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */ -#include -#include -#include +#include +#include +#include void rewind(FILE *f) @@ -12,5 +12,4 @@ void rewind(FILE *f) f->_cnt = 0; f->_ptr = f->_base; f->_flag &= ~(_IOERR|_IOEOF|_IOAHEAD); - }