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

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)gethostid.c 1.13 99/08/30 Copyright 1995 J. Schilling */
  2. #ifndef lint
  3. static char sccsid[] =
  4. "@(#)gethostid.c 1.13 99/08/30 Copyright 1995 J. Schilling";
  5. #endif
  6. /*
  7.  * Copyright (c) 1995 J. Schilling
  8.  */
  9. /*
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2, or (at your option)
  13.  * any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; see the file COPYING.  If not, write to
  22.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  */
  24. #include <mconfig.h>
  25. #include <standard.h>
  26. #include <stdxlib.h>
  27. #include <utypes.h>
  28. #ifdef HAVE_SYS_SYSTEMINFO_H
  29. #include <sys/systeminfo.h>
  30. #endif
  31. #include <libport.h>
  32. #ifndef HAVE_GETHOSTID
  33. EXPORT long gethostid __PR((void));
  34. #endif
  35. #if !defined(HAVE_GETHOSTID) && defined(SI_HW_SERIAL)
  36. EXPORT long
  37. gethostid()
  38. {
  39. long id;
  40. char hbuf[257];
  41. sysinfo(SI_HW_SERIAL, hbuf, sizeof(hbuf));
  42. id = atoi(hbuf);
  43. return (id);
  44. }
  45. #endif