summaryrefslogtreecommitdiff
path: root/include/errno.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-01-26 10:53:37 -0500
committerRich Felker <dalias@aerifal.cx>2012-01-26 10:53:37 -0500
commitc3db56c4cb2b5eb06cbf46b8fe526f4fe7e10321 (patch)
tree9e243488f065a13736e7dc7149c3959c10280190 /include/errno.h
parent8eb9a3afba6c47c0c5fbb337612dae2ea19bd97e (diff)
downloadmusl-c3db56c4cb2b5eb06cbf46b8fe526f4fe7e10321.tar.gz
remove useless "extern" keywords in headers
Diffstat (limited to 'include/errno.h')
-rw-r--r--include/errno.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/errno.h b/include/errno.h
index 9d680338..9e1e3202 100644
--- a/include/errno.h
+++ b/include/errno.h
@@ -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