diff options
author | obrien <obrien@FreeBSD.org> | 2010-10-13 22:18:03 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2010-10-13 22:18:03 +0000 |
commit | 08b8d916b5887267ef963fd711f1e65b7d8378ac (patch) | |
tree | e6aebfbd6fc9b05a3d5978a6cd639a9acb7a748a /bin/sh/output.c | |
parent | 67f7009c396ada7a6c986ffb8369f851e1063b6f (diff) | |
download | FreeBSD-src-08b8d916b5887267ef963fd711f1e65b7d8378ac.zip FreeBSD-src-08b8d916b5887267ef963fd711f1e65b7d8378ac.tar.gz |
In the spirit of r90111, depend on c89 and remove the "STATIC" macro
and its usage.
Diffstat (limited to 'bin/sh/output.c')
-rw-r--r-- | bin/sh/output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sh/output.c b/bin/sh/output.c index 87f1245..9fd8478 100644 --- a/bin/sh/output.c +++ b/bin/sh/output.c @@ -68,7 +68,7 @@ __FBSDID("$FreeBSD$"); #define MEM_OUT -3 /* output to dynamically allocated memory */ #define OUTPUT_ERR 01 /* error occurred on output */ -STATIC int doformat_wr(void *, const char *, int); +static int doformat_wr(void *, const char *, int); struct output output = {NULL, 0, NULL, OUTBUFSIZ, 1, 0}; struct output errout = {NULL, 0, NULL, 256, 2, 0}; @@ -281,7 +281,7 @@ fmtstr(char *outbuf, int length, const char *fmt, ...) outbuf[length - 1] = '\0'; } -STATIC int +static int doformat_wr(void *cookie, const char *buf, int len) { struct output *o; |