remove useless "extern" keywords in headers

This commit is contained in:
Rich Felker 2012-01-26 10:53:37 -05:00
parent 8eb9a3afba
commit c3db56c4cb
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ extern "C" {
#ifdef __GNUC__ #ifdef __GNUC__
__attribute__((const)) __attribute__((const))
#endif #endif
extern int *__errno_location(void); int *__errno_location(void);
#define errno (*__errno_location()) #define errno (*__errno_location())
#ifdef __cplusplus #ifdef __cplusplus

View File

@ -122,7 +122,7 @@ struct res_sym {
#define RES_PRF_REPLY 0x00002000 #define RES_PRF_REPLY 0x00002000
#define RES_PRF_INIT 0x00004000 #define RES_PRF_INIT 0x00004000
extern struct __res_state *__res_state(void); struct __res_state *__res_state(void);
#define _res (*__res_state()) #define _res (*__res_state())
struct rrec; struct rrec;

View File

@ -11,7 +11,7 @@ extern "C" {
#define LOCK_NB 4 #define LOCK_NB 4
#define LOCK_UN 8 #define LOCK_UN 8
extern int flock(int, int); int flock(int, int);
#endif #endif