1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * magic.h - PPP Magic Number definitions.
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * Copyright (c) 1989 Carnegie Mellon University.
5*7c478bd9Sstevel@tonic-gate  * All rights reserved.
6*7c478bd9Sstevel@tonic-gate  *
7*7c478bd9Sstevel@tonic-gate  * Redistribution and use in source and binary forms are permitted
8*7c478bd9Sstevel@tonic-gate  * provided that the above copyright notice and this paragraph are
9*7c478bd9Sstevel@tonic-gate  * duplicated in all such forms and that any documentation,
10*7c478bd9Sstevel@tonic-gate  * advertising materials, and other materials related to such
11*7c478bd9Sstevel@tonic-gate  * distribution and use acknowledge that the software was developed
12*7c478bd9Sstevel@tonic-gate  * by Carnegie Mellon University.  The name of the
13*7c478bd9Sstevel@tonic-gate  * University may not be used to endorse or promote products derived
14*7c478bd9Sstevel@tonic-gate  * from this software without specific prior written permission.
15*7c478bd9Sstevel@tonic-gate  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16*7c478bd9Sstevel@tonic-gate  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17*7c478bd9Sstevel@tonic-gate  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18*7c478bd9Sstevel@tonic-gate  *
19*7c478bd9Sstevel@tonic-gate  * $Id: magic.h,v 1.3 1994/09/21 06:47:37 paulus Exp $
20*7c478bd9Sstevel@tonic-gate  */
21*7c478bd9Sstevel@tonic-gate 
22*7c478bd9Sstevel@tonic-gate void magic_init __P((void));	/* Initialize the magic number generator */
23*7c478bd9Sstevel@tonic-gate u_int32_t magic __P((void));	/* Returns the next magic number */
24