#ifndef APACHE_OS_H
#define APACHE_OS_H
#define PLATFORM "OS/2"
#define HAVE_CANONICAL_FILENAME
#define HAVE_DRIVE_LETTERS
#define HAVE_UNC_PATHS
#if defined(__GNUC__) && !defined(INLINE)
#define INLINE extern __inline__
INLINE
int
ap_os_is_path_absolute(
const
char
*file);
#include "os-inline.c"
#endif
#ifndef INLINE
extern
int
ap_os_is_path_absolute(
const
char
*file);
#endif
#define ap_os_is_filename_valid(f) (1)
int
ap_os_kill(
int
pid,
int
sig);
char
*ap_os_error_message(
int
err);
#define S_ISLNK(m) 0
#define lstat(x, y) stat(x, y)
#define isinf(n) (!isfinite(n))
#define HAVE_ISINF
#define HAVE_ISNAN
#define ap_os_dso_handle_t unsigned long
void
ap_os_dso_init(
void
);
ap_os_dso_handle_t ap_os_dso_load(
const
char
*);
void
ap_os_dso_unload(ap_os_dso_handle_t);
void
* ap_os_dso_sym(ap_os_dso_handle_t,
const
char
*);
const
char
*ap_os_dso_error(
void
);
#endif /* ! APACHE_OS_H */