diff options
author | cvpcs <root@cvpcs.org> | 2010-06-25 15:15:19 -0500 |
---|---|---|
committer | cvpcs <root@cvpcs.org> | 2010-06-25 15:15:19 -0500 |
commit | 9c8f5521ac2d6be417433bd586636ca1f280f8a8 (patch) | |
tree | a9be9d8cba934c91012f91a251ab147b671c5b01 | |
parent | c12d330ddc951c5e6761c0535a4c5dd079d0a777 (diff) | |
download | external_bash-9c8f5521ac2d6be417433bd586636ca1f280f8a8.zip external_bash-9c8f5521ac2d6be417433bd586636ca1f280f8a8.tar.gz external_bash-9c8f5521ac2d6be417433bd586636ca1f280f8a8.tar.bz2 |
switched extern of fdprintf from void to int (change in bionic)
-rw-r--r-- | externs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -179,7 +179,7 @@ extern void clock_t_to_secs (); extern void print_clock_t (); /* Declarations for functions defined in lib/sh/fdprintf.c */ -extern void fdprintf __P((int, const char *, ...)) __attribute__((__format__ (printf, 2, 3))); +extern int fdprintf __P((int, const char *, ...)) __attribute__((__format__ (printf, 2, 3))); /* Declarations for functions defined in lib/sh/fmtulong.c */ #define FL_PREFIX 0x01 /* add 0x, 0X, or 0 prefix as appropriate */ |