]> granicus.if.org Git - json-c/commitdiff
tests/strerror_override.c: fix compilation error
authorAlexandru Ardelean <ardeleanalex@gmail.com>
Tue, 1 Nov 2016 15:49:28 +0000 (17:49 +0200)
committerAlexandru Ardelean <ardeleanalex@gmail.com>
Fri, 4 Nov 2016 07:51:44 +0000 (09:51 +0200)
I got this on Mac OS X at least.
Not sure if it shows up in other envs

error:
```
strerror_override.c:53:13: error: incompatible redeclaration of library function 'strerror' [-Werror,-Wincompatible-library-redeclaration]
const char *strerror(int errno_in)
```

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
tests/strerror_override.c

index a5c2292565cfb0266b044234796b71668f3be376..d197e7f5e73f3d70fa2cc9c35dd12ed9e520c78a 100644 (file)
@@ -50,7 +50,7 @@ static struct {
 
 #define PREFIX "ERRNO="
 static char errno_buf[128] = PREFIX;
-const char *strerror(int errno_in)
+char *strerror(int errno_in)
 {
        int start_idx;
        char digbuf[20];