diff options
author | Mattias Andrée <maandree@kth.se> | 2019-04-12 22:32:50 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2019-04-12 22:32:50 +0200 |
commit | 658557736a803071a47bacb33e8471168e67e6be (patch) | |
tree | a3d048c7e0ac825bb2a3906de2107becdfa3a6c6 /liberror-libc.h | |
parent | Use C99 rather than C11 (diff) | |
download | liberror-libc-658557736a803071a47bacb33e8471168e67e6be.tar.gz liberror-libc-658557736a803071a47bacb33e8471168e67e6be.tar.bz2 liberror-libc-658557736a803071a47bacb33e8471168e67e6be.tar.xz |
shutdown: add name parameter
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | liberror-libc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/liberror-libc.h b/liberror-libc.h index 0a8634c..fd67f3b 100644 --- a/liberror-libc.h +++ b/liberror-libc.h @@ -12,7 +12,7 @@ long long int liberror_llabs(long long int); int liberror_pipe(int[2]); int liberror_putenv(char *); int liberror_setenv(const char *, const char *, int); -int liberror_shutdown(int, int); +int liberror_shutdown(int, int, const char *); int liberror_unsetenv(const char *); |