magic.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* magic.h - PPP Magic Number header */
  2. /* Copyright 1995 Wind River Systems, Inc. */
  3. /*
  4.  * Copyright (c) 1989 Carnegie Mellon University.
  5.  * All rights reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms are permitted
  8.  * provided that the above copyright notice and this paragraph are
  9.  * duplicated in all such forms and that any documentation,
  10.  * advertising materials, and other materials related to such
  11.  * distribution and use acknowledge that the software was developed
  12.  * by Carnegie Mellon University.  The name of the
  13.  * University may not be used to endorse or promote products derived
  14.  * from this software without specific prior written permission.
  15.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  16.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  17.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  18.  */
  19. /*
  20. modification history
  21. --------------------
  22. 01a,16jan95,dzb  WRS-ize.
  23. */
  24. #ifndef __INCmagich
  25. #define __INCmagich
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. /* function declarations */
  30.  
  31. #if defined(__STDC__) || defined(__cplusplus)
  32.   
  33. extern void magic_init (void); /* Init the magic number generator */
  34. extern u_long magic (void); /* Returns the next magic number */
  35. #else /* __STDC__ */
  36. extern void magic_init (); /* Init the magic number generator */
  37. extern u_long magic (); /* Returns the next magic number */
  38. #endif /* __STDC__ */
  39. #ifdef __cplusplus
  40. }
  41. #endif
  42. #endif /* __INCmagich */