]> Dogcows Code - chaz/openbox/commitdiff
dont use #ifdef HAVE_FOO for ansi functions/headers
authorDana Jansens <danakj@orodu.net>
Sat, 12 Apr 2003 03:22:33 +0000 (03:22 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 12 Apr 2003 03:22:33 +0000 (03:22 +0000)
cwmcc/client_props.c
cwmcc/prop.c
cwmcc/root_props.c

index 30644dd89f1ad3b42e3133085bc3b90d74783d4d..b91deb2f88cd26f72dabc42b1d149b93902df2e1 100644 (file)
@@ -4,9 +4,7 @@
 #include "client_props.h"
 
 #include <X11/Xutil.h>
-#ifdef HAVE_STRING_H
-#  include <string.h>
-#endif
+#include <string.h>
 
 void cwmcc_client_get_protocols(Window win, Atom **protocols)
 {
index 1c6ab8cc930c06152c592311d0b9704473032774..66d2fb8de1a4791f4001566524390b0f6797759d 100644 (file)
@@ -3,9 +3,7 @@
 
 #include <X11/Xutil.h>
 #include <glib.h>
-#ifdef HAVE_STRING_H
-#  include <string.h>
-#endif
+#include <string.h>
 
 /* this just isn't used...
 static gboolean get(Window win, Atom prop, Atom type, int size,
index bc963c83bcfcd08d9127972c4084853979eaf2d8..daaf580e1c4fd19fb4d8d13948d1b3b223f9fd8d 100644 (file)
@@ -3,9 +3,7 @@
 #include "prop.h"
 #include "root_props.h"
 
-#ifdef HAVE_STRING_H
-#  include <string.h>
-#endif
+#include <string.h>
 
 void cwmcc_root_get_supported(Window win, Atom **atoms)
 {
This page took 0.026651 seconds and 4 git commands to generate.