From ea88c01d6ee914cb4a6a198ff1fb92db202ee36a Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Sun, 22 Apr 2001 01:56:09 +0000 Subject: Style(9) fixes: * get rid of space (0x20) before tab (^I) * indent with ^I, not 0x20 * continuation line for prototypes is for 0x20's past function's name col. * etc. --- include/stdio.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/stdio.h') diff --git a/include/stdio.h b/include/stdio.h index db84d40f177a..431eab0e6852 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -334,10 +334,10 @@ __END_DECLS */ __BEGIN_DECLS FILE *funopen __P((const void *, - int (*)(void *, char *, int), - int (*)(void *, const char *, int), - fpos_t (*)(void *, fpos_t, int), - int (*)(void *))); + int (*)(void *, char *, int), + int (*)(void *, const char *, int), + fpos_t (*)(void *, fpos_t, int), + int (*)(void *))); __END_DECLS #define fropen(cookie, fn) funopen(cookie, fn, 0, 0, 0) #define fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0) -- cgit v1.3