aboutsummaryrefslogtreecommitdiffstats
path: root/libsimple.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2018-11-02 14:44:11 +0100
committerMattias Andrée <maandree@kth.se>2018-11-02 14:44:11 +0100
commitbc8b4e954c5e509d4f4148039be5a6e458f5c1a3 (patch)
treeb86e6b11b3f938298824748f670d696733b2b66c /libsimple.h
parentDocumentation (diff)
downloadlibsimple-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.h5
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,