diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-11-24 18:46:50 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-11-24 18:48:07 +0000 |
commit | 7b085136a7291cbcdfcc53182fbd13aaca70306e (patch) | |
tree | d1163394ea472132c6cc541c4247d8925c71974a /compat/vis.h | |
parent | 3f47ff6ecd7c126474c77d03f7886b7ef232d468 (diff) | |
download | rtmux-7b085136a7291cbcdfcc53182fbd13aaca70306e.tar.gz rtmux-7b085136a7291cbcdfcc53182fbd13aaca70306e.tar.bz2 rtmux-7b085136a7291cbcdfcc53182fbd13aaca70306e.zip |
-sys/queue.h in proc.c, and nuke the unnecessary C++ header guards stuff and
sys/cdefs.h in vis.h (it causes problems on some platforms). Reported by
someone on GitHub, issue 212.
Diffstat (limited to 'compat/vis.h')
-rw-r--r-- | compat/vis.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compat/vis.h b/compat/vis.h index 6795139c..9f12d236 100644 --- a/compat/vis.h +++ b/compat/vis.h @@ -73,9 +73,6 @@ */ #define UNVIS_END 1 /* no more characters */ -#include <sys/cdefs.h> - -__BEGIN_DECLS char *vis(char *, int, int, int); int strvis(char *, const char *, int); int stravis(char **, const char *, int); @@ -85,6 +82,4 @@ int strunvis(char *, const char *); int unvis(char *, char, int *, int); ssize_t strnunvis(char *, const char *, size_t); -__END_DECLS - #endif /* !_VIS_H_ */ |