diff options
Diffstat (limited to 'util/bsetroot.cc')
-rw-r--r-- | util/bsetroot.cc | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/util/bsetroot.cc b/util/bsetroot.cc index 9735e05..86d1efb 100644 --- a/util/bsetroot.cc +++ b/util/bsetroot.cc | |||
@@ -18,7 +18,7 @@ | |||
18 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | 18 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | 20 | ||
21 | // $Id: bsetroot.cc,v 1.21 2004/06/08 13:15:30 rathnor Exp $ | 21 | // $Id: bsetroot.cc,v 1.22 2004/08/31 15:26:40 rathnor Exp $ |
22 | 22 | ||
23 | #include "bsetroot.hh" | 23 | #include "bsetroot.hh" |
24 | 24 | ||
@@ -32,9 +32,21 @@ | |||
32 | 32 | ||
33 | #include <X11/Xatom.h> | 33 | #include <X11/Xatom.h> |
34 | 34 | ||
35 | #include <cstring> | 35 | #ifdef HAVE_CSTRING |
36 | #include <cstdlib> | 36 | #include <cstring> |
37 | #include <cstdio> | 37 | #else |
38 | #include <string.h> | ||
39 | #endif | ||
40 | #ifdef HAVE_CSTDLIB | ||
41 | #include <cstdlib> | ||
42 | #else | ||
43 | #include <stdlib.h> | ||
44 | #endif | ||
45 | #ifdef HAVE_CSTDIO | ||
46 | #include <cstdio> | ||
47 | #else | ||
48 | #include <stdio.h> | ||
49 | #endif | ||
38 | #include <iostream> | 50 | #include <iostream> |
39 | 51 | ||
40 | using namespace std; | 52 | using namespace std; |