mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-13 16:54:16 +03:00
remove useless "extern" keywords in headers
This commit is contained in:
parent
8eb9a3afba
commit
c3db56c4cb
@ -10,7 +10,7 @@ extern "C" {
|
||||
#ifdef __GNUC__
|
||||
__attribute__((const))
|
||||
#endif
|
||||
extern int *__errno_location(void);
|
||||
int *__errno_location(void);
|
||||
#define errno (*__errno_location())
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -122,7 +122,7 @@ struct res_sym {
|
||||
#define RES_PRF_REPLY 0x00002000
|
||||
#define RES_PRF_INIT 0x00004000
|
||||
|
||||
extern struct __res_state *__res_state(void);
|
||||
struct __res_state *__res_state(void);
|
||||
#define _res (*__res_state())
|
||||
|
||||
struct rrec;
|
||||
|
@ -11,7 +11,7 @@ extern "C" {
|
||||
#define LOCK_NB 4
|
||||
#define LOCK_UN 8
|
||||
|
||||
extern int flock(int, int);
|
||||
int flock(int, int);
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user