* Clean up some function definitions to comply with strict
[alpine.git] / imap / src / osdep / unix / os_do4.c
blob95da87ecef7009feaba9a59c04fc16f3fc05b7c2
1 /* ========================================================================
2 * Copyright 1988-2007 University of Washington
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
11 * ========================================================================
15 * Program: Operating-system dependent routines -- Apollo Domain/OS sr10.4
17 * Author: Mark Crispin
18 * Networks and Distributed Computing
19 * Computing & Communications
20 * University of Washington
21 * Administration Building, AG-44
22 * Seattle, WA 98195
24 * Date: 11 May 1989
25 * Last Edited: 16 August 2007
28 #include "tcp_unix.h" /* must be before osdep includes tcp.h */
29 #include "mail.h"
30 #include "osdep.h"
31 #include <stdio.h>
32 #include <sys/stat.h>
33 #include <sys/time.h>
34 #include <sys/socket.h>
35 #include <arpa/inet.h>
36 #include <netdb.h>
37 #include <ctype.h>
38 #include <errno.h>
39 #ifndef errno
40 extern int errno; /* just in case */
41 #endif
42 #include <pwd.h>
43 #include "misc.h"
46 #define isodigit(c) (((unsigned)(c)>=060)&((unsigned)(c)<=067))
47 #define toint(c) ((c)-'0')
49 extern int sys_nerr;
50 extern char *sys_errlist[];
53 #include "fs_unix.c"
54 #include "ftl_unix.c"
55 #include "nl_unix.c"
56 #include "env_unix.c"
57 #define fork vfork
58 #include "tcp_unix.c"
59 #include "gr_waitp.c"
60 #include "tz_sv4.c"