diff options
author | obrien <obrien@FreeBSD.org> | 2001-04-22 01:56:09 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-04-22 01:56:09 +0000 |
commit | 9cc16de19ff39d117c0561748bb672dde1f8edac (patch) | |
tree | 89d91547246658c7d9c1f8a54b6152157dba7618 /include | |
parent | abd12416e5e64bfed0a95fad19e001aeadac29ce (diff) | |
download | FreeBSD-src-9cc16de19ff39d117c0561748bb672dde1f8edac.zip FreeBSD-src-9cc16de19ff39d117c0561748bb672dde1f8edac.tar.gz |
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.
Diffstat (limited to 'include')
-rw-r--r-- | include/stdio.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/stdio.h b/include/stdio.h index db84d40..431eab0 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) |