diff options
author | Blue Swirl | 2011-01-23 17:21:20 +0100 |
---|---|---|
committer | Blue Swirl | 2011-01-23 17:21:20 +0100 |
commit | 64b85a8f2359ca3a995499afaf3c87d8e036e030 (patch) | |
tree | c8f8396df5fde32181b5e93f241b64c604cf5df5 /slirp | |
parent | gdbstub-xml: avoid a warning from sparse (diff) | |
download | qemu-64b85a8f2359ca3a995499afaf3c87d8e036e030.tar.gz qemu-64b85a8f2359ca3a995499afaf3c87d8e036e030.tar.xz qemu-64b85a8f2359ca3a995499afaf3c87d8e036e030.zip |
Delete useless 'extern' qualifiers for functions
'extern' qualifier is useless for function declarations. Delete
them.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'slirp')
-rw-r--r-- | slirp/slirp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slirp/slirp.h b/slirp/slirp.h index dfd977aa0c..954289a8c8 100644 --- a/slirp/slirp.h +++ b/slirp/slirp.h @@ -238,7 +238,7 @@ void if_start(struct ttys *); #endif #ifndef HAVE_STRERROR - extern char *strerror(int error); + char *strerror(int error); #endif #ifndef HAVE_INDEX |