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 /close.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 'close.c')
-rw-r--r-- | close.c | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +/* See LICENSE file for copyright and license details. */ +#include "libsimple.h" +#ifndef TEST + + +extern inline int libsimple_close(int *); /* TODO test */ + + +#else +#include "test.h" + +int +main(void) +{ + return 0; +} + +#endif |