libport.h
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)libport.h 1.3 99/10/16 Copyright 1995 J. Schilling */
  2. /*
  3.  * Copyright (c) 1995 J. Schilling
  4.  */
  5. /*
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2, or (at your option)
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; see the file COPYING.  If not, write to
  18.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  */
  20. #ifndef _LIBPORT_H
  21. #define _LIBPORT_H
  22. #ifndef _MCONFIG_H
  23. #include <mconfig.h>
  24. #endif
  25. #ifndef _PROTOTYP_H
  26. #include <prototyp.h>
  27. #endif
  28. #ifdef OPENSERVER
  29. /*
  30.  * Don't use the usleep() from libc on SCO's OPENSERVER.
  31.  * It will kill our processes with SIGALRM.
  32.  */
  33. /*
  34.  * Don't #undef HAVE_USLEEP in this file, SCO has a
  35.  * usleep() prototype in unistd.h
  36.  */
  37. /*#undef HAVE_USLEEP*/
  38. #endif
  39. #ifndef HAVE_GETHOSTID
  40. extern long gethostid __PR((void));
  41. #endif
  42. #ifndef HAVE_GETHOSTNAME
  43. extern int gethostname __PR((char *name, int namelen));
  44. #endif
  45. #ifndef HAVE_GETDOMAINNAME
  46. extern int getdomainname __PR((char *name, int namelen));
  47. #endif
  48. #ifndef HAVE_USLEEP
  49. extern int usleep __PR((int usec));
  50. #endif
  51. #endif /* _LIBPORT_H */