diff options
author | Mattias Andrée <maandree@kth.se> | 2022-06-10 20:34:32 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-06-10 20:34:32 +0200 |
commit | 056c5fe698f194c3187b9eec5378c441930c005b (patch) | |
tree | fc918970dcb3576774754c990af230b4dbab02e9 /strtoz.c | |
parent | Add strto[u]{hh,h,z}, strto{i,u}{,8,16,32,64} (diff) | |
download | libsimple-056c5fe698f194c3187b9eec5378c441930c005b.tar.gz libsimple-056c5fe698f194c3187b9eec5378c441930c005b.tar.bz2 libsimple-056c5fe698f194c3187b9eec5378c441930c005b.tar.xz |
Remove `static` from some `static inline`
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'strtoz.c')
-rw-r--r-- | strtoz.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ #ifndef TEST -extern inline ssize_t libsimple_strtoz(const char *restrict nptr, char **restrict end, int base); /* TODO test, man */ +extern inline ssize_t libsimple_strtoz(const char *restrict, char **restrict, int); /* TODO test, man */ #else |