diff options
author | Mattias Andrée <maandree@kth.se> | 2018-11-02 14:44:11 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2018-11-02 14:44:11 +0100 |
commit | bc8b4e954c5e509d4f4148039be5a6e458f5c1a3 (patch) | |
tree | b86e6b11b3f938298824748f670d696733b2b66c /libsimple.h | |
parent | Documentation (diff) | |
download | libsimple-bc8b4e954c5e509d4f4148039be5a6e458f5c1a3.tar.gz libsimple-bc8b4e954c5e509d4f4148039be5a6e458f5c1a3.tar.bz2 libsimple-bc8b4e954c5e509d4f4148039be5a6e458f5c1a3.tar.xz |
Remove FREE and CLOSE, and add symlinks for upcoming man pages
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libsimple.h')
-rw-r--r-- | libsimple.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libsimple.h b/libsimple.h index 8020926..0ca873c 100644 --- a/libsimple.h +++ b/libsimple.h @@ -83,11 +83,6 @@ extern int libsimple_default_failure_exit; #include "libsimple/strn.h" -#define FREE(PTR) ((void)(free(PTR), (PTR) = NULL)) - -#define CLOSE(FD) libsimple_close(&(FD)) - - /** * Wrapper for close(3) that only calls close(3) * if the file descriptor number is non-negative, |