diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-01-23 16:21:20 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-01-23 16:21:20 +0000 |
commit | b2b281d876912a2af75cc77459a6b499638638ba (patch) | |
tree | a257c1839bb3408fa4132c03a38294e4441a3cee /slirp.h | |
parent | 439835070530072b073c83e246baf787111c07b8 (diff) | |
download | slirp-b2b281d876912a2af75cc77459a6b499638638ba.zip slirp-b2b281d876912a2af75cc77459a6b499638638ba.tar.gz slirp-b2b281d876912a2af75cc77459a6b499638638ba.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>
Diffstat (limited to 'slirp.h')
-rw-r--r-- | slirp.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |