2 * This file has been modified for the cdrkit suite.
4 * The behaviour and appearence of the program code below can differ to a major
5 * extent from the version distributed by the original author(s).
7 * For details, see Changelog file distributed with the cdrkit package. If you
8 * received this file from another source then ask the distributing person for
9 * a log of modifications.
13 /* @(#)libport.h 1.9 03/06/15 Copyright 1995 J. Schilling */
15 * Copyright (c) 1995 J. Schilling
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License version 2
20 * as published by the Free Software Foundation.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * You should have received a copy of the GNU General Public License along with
28 * this program; see the file COPYING. If not, write to the Free Software
29 * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
47 * Try to get HOST_NAME_MAX for gethostname()
54 #if defined(HAVE_NETDB_H) && !defined(HOST_NOT_FOUND) && \
55 !defined(_INCL_NETDB_H)
60 #define HOST_NAME_MAX MAXHOSTNAMELEN
65 #ifdef HAVE_SYS_PARAM_H
66 #include <sys/param.h> /* Include various defs needed with some OS */
67 /* Linux MAXHOSTNAMELEN */
71 #define HOST_NAME_MAX MAXHOSTNAMELEN
77 #define HOST_NAME_MAX 255
86 * Don't use the usleep() from libc on SCO's OPENSERVER.
87 * It will kill our processes with SIGALRM.
90 * Don't #undef HAVE_USLEEP in this file, SCO has a
91 * usleep() prototype in unistd.h
93 /*#undef HAVE_USLEEP*/
96 #ifndef HAVE_GETHOSTID
97 extern long gethostid(void);
99 #ifndef HAVE_GETHOSTNAME
100 extern int gethostname(char *name, int namelen);
102 #ifndef HAVE_GETDOMAINNAME
103 extern int getdomainname(char *name, int namelen);
105 #ifndef HAVE_GETPAGESIZE
106 int getpagesize(void);
109 extern int usleep(int usec);
112 #if !defined(HAVE_STRDUP) || defined(__SVR4)
113 extern char *strdup(const char *s);
117 extern int rename(const char *old, const char *new);
124 #endif /* _LIBPORT_H */