File: config.h.bot

package info (click to toggle)
kdeutils 4%3A2.2.2-9.2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 8,892 kB
  • ctags: 10,879
  • sloc: cpp: 82,942; sh: 11,754; ansic: 4,638; perl: 1,852; makefile: 706; python: 258
file content (43 lines) | stat: -rw-r--r-- 919 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system
 * headers and I'm too lazy to write a configure test as long as only
 * unixware is related
 */
#ifdef _UNIXWARE
#define HAVE_BOOLEAN
#endif

#ifdef __osf__
#include <sys/mount.h>    /* for statfs in ark/arkwidget.cc */
#ifdef __cplusplus
extern "C" int statfs(const char *path, struct statfs *buffer);
#else
int statfs(const char *path, struct statfs *buffer);
#endif
#endif

/*
 * AIX defines FD_SET in terms of bzero, but fails to include <strings.h>
 * that defines bzero. And it needs strings.h for a lot of BSD stuff.
 */

#if defined(_AIX)
#include <strings.h>
#endif

#ifndef HAVE_SETENV
#define HAVE_SETENV
#ifdef __cplusplus
extern "C"
#endif
int setenv(const char *name, const char *value, int overwrite);
#endif

#ifndef HAVE_UNSETENV
#define HAVE_UNSETENV
#ifdef __cplusplus
extern "C"
#endif
int unsetenv(const char *name);
#endif