]> arthur.barton.de Git - netatalk.git/blob - include/atalk/compat.h
Remove inet_aton from compatibility library
[netatalk.git] / include / atalk / compat.h
1 /*
2  * Copyright (c) 1996 Regents of The University of Michigan.
3  * All Rights Reserved.  See COPYRIGHT.
4  *
5  * NOTE: SunOS 4 and ultrix are pretty much the only reason why there
6  * are checks for EINTR everywhere. 
7  */
8
9 #ifdef HAVE_CONFIG_H
10 #include "config.h"
11
12 #include <signal.h>
13
14 #if defined(ultrix) || defined(_IBMR2) || defined(NEED_GETUSERSHELL)
15 extern char *getusershell (void);
16 #endif
17
18 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
19 # include <stdio.h>
20 # include <stdarg.h>
21 # ifndef HAVE_SNPRINTF
22 int snprintf (char *str,size_t count,const char *fmt,...);
23 # endif
24
25 # ifndef HAVE_VSNPRINTF
26 int vsnprintf(char *str, size_t count, const char *fmt, va_list args);
27 # endif
28 #endif
29
30 /* OpenBSD */
31 #if defined(__OpenBSD__) && !defined(ENOTSUP)
32 #define ENOTSUP EOPNOTSUPP
33 #endif
34
35 #if !defined(HAVE_PSELECT) || defined(__OpenBSD__)
36 extern int pselect(int, fd_set * restrict, fd_set * restrict,
37                    fd_set * restrict, const struct timespec * restrict,
38                    const sigset_t * restrict);
39 #endif
40
41 #ifndef HAVE_FLOCK
42 extern int flock (int, int);
43 #endif
44
45 #ifndef HAVE_STRNLEN
46 extern size_t strnlen(const char *s, size_t n);
47 #endif
48
49 #ifndef HAVE_STRLCPY
50 extern size_t strlcpy (char *, const char *, size_t);
51 #endif
52  
53 #ifndef HAVE_STRLCAT
54 extern size_t strlcat (char *, const char *, size_t);
55 #endif
56
57 #endif