aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2011-01-23 16:21:20 +0000
committerBlue Swirl <blauwirbel@gmail.com>2011-01-23 16:21:20 +0000
commitb2b281d876912a2af75cc77459a6b499638638ba (patch)
treea257c1839bb3408fa4132c03a38294e4441a3cee
parent439835070530072b073c83e246baf787111c07b8 (diff)
downloadslirp-0.14.0-rc1.zip
slirp-0.14.0-rc1.tar.gz
slirp-0.14.0-rc1.tar.bz2
Delete useless 'extern' qualifiers for functionsv0.14.0-rc1v0.14.0-rc0
'extern' qualifier is useless for function declarations. Delete them. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r--slirp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/slirp.h b/slirp.h
index 53ea16d..7a0f2da 100644
--- a/slirp.h
+++ b/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