X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=lib%2Fcrtdll%2Fstdio%2Frewind.c;h=013e2fcc38ad24f4e91bae935171633216c1e2e1;hb=03af8776dc14167b078911b0c7c5327d1bcdd128;hp=099b6b7dabb00083cfd684d76dfecb4fca89cc97;hpb=1334f77b1ecef00ac31076ce6bf22bdfeb82d347;p=reactos.git 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); - }