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

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)libport.h 1.2 99/08/30 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. #undef HAVE_USLEEP
  34. #endif
  35. #ifndef HAVE_GETHOSTID
  36. extern long gethostid __PR((void));
  37. #endif
  38. #ifndef HAVE_GETHOSTNAME
  39. extern int gethostname __PR((char *name, int namelen));
  40. #endif
  41. #ifndef HAVE_GETDOMAINNAME
  42. extern int getdomainname __PR((char *name, int namelen));
  43. #endif
  44. #ifndef HAVE_USLEEP
  45. extern int usleep __PR((int usec));
  46. #endif
  47. #endif /* _LIBPORT_H */