diff options
Diffstat (limited to 'usr.sbin/httpd/src/include/ap_alloc.h')
| -rw-r--r-- | usr.sbin/httpd/src/include/ap_alloc.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/usr.sbin/httpd/src/include/ap_alloc.h b/usr.sbin/httpd/src/include/ap_alloc.h index 8d427ef339a..994c51e0d36 100644 --- a/usr.sbin/httpd/src/include/ap_alloc.h +++ b/usr.sbin/httpd/src/include/ap_alloc.h @@ -84,11 +84,6 @@ extern "C" { * alloc.c. */ - /* Need declaration of DIR on Win32 */ -#ifdef WIN32 -#include "readdir.h" -#endif - typedef struct pool pool; typedef struct pool ap_pool; @@ -331,13 +326,8 @@ API_EXPORT_NONSTD(void) ap_null_cleanup(void *data); * up with timeout handling in general... */ -#ifdef TPF -#define ap_block_alarms() (0) -#define ap_unblock_alarms() (0) -#else API_EXPORT(void) ap_block_alarms(void); API_EXPORT(void) ap_unblock_alarms(void); -#endif /* TPF */ /* Common cases which want utility support.. * the note_cleanups_for_foo routines are for @@ -353,9 +343,6 @@ API_EXPORT(void) ap_note_cleanups_for_file(pool *, FILE *); API_EXPORT(void) ap_note_cleanups_for_file_ex(pool *, FILE *, int); API_EXPORT(void) ap_note_cleanups_for_fd(pool *, int); API_EXPORT(void) ap_note_cleanups_for_fd_ex(pool *, int, int); -#ifdef WIN32 -API_EXPORT(void) ap_note_cleanups_for_h(pool *, HANDLE); -#endif API_EXPORT(void) ap_kill_cleanups_for_fd(pool *p, int fd); API_EXPORT(void) ap_note_cleanups_for_socket(pool *, int); @@ -374,9 +361,6 @@ API_EXPORT(void) ap_pregfree(pool *p, regex_t * reg); API_EXPORT(int) ap_pfclose(struct pool *, FILE *); API_EXPORT(int) ap_pclosef(struct pool *, int fd); -#ifdef WIN32 -API_EXPORT(int) ap_pcloseh(struct pool *, HANDLE hDevice); -#endif /* routines to deal with directories */ API_EXPORT(DIR *) ap_popendir(pool *p, const char *name); |
