~ubuntu-branches/ubuntu/vivid/libpam-tacplus/vivid

« back to all changes in this revision

Viewing changes to libtac/lib/magic.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeroen Nijhof
  • Date: 2011-09-05 16:01:00 UTC
  • Revision ID: james.westby@ubuntu.com-20110905160100-7o4aqefbiflj4232
Tags: upstream-1.3.5
ImportĀ upstreamĀ versionĀ 1.3.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* magic.h - PPP Magic Number definitions.
 
2
 *
 
3
 * Copyright (C) 1989 Carnegie Mellon University.
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program - see the file COPYING.
 
17
 *
 
18
 * See `CHANGES' file for revision history.
 
19
 */
 
20
 
 
21
#ifndef _MAGIC_H
 
22
#define _MAGIC_H
 
23
#ifndef __linux__
 
24
    #include "cdefs.h"
 
25
#endif
 
26
 
 
27
__BEGIN_DECLS
 
28
void magic_init __P((void));    /* Initialize the magic number generator */
 
29
u_int32_t magic __P((void));    /* Returns the next magic number */
 
30
__END_DECLS
 
31
 
 
32
#endif