File: sigs.h

package info (click to toggle)
tripwire 1.2-15
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 1,428 kB
  • ctags: 866
  • sloc: ansic: 7,938; sh: 1,316; makefile: 425; yacc: 413; lex: 133; perl: 101
file content (37 lines) | stat: -rw-r--r-- 612 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* $Id: sigs.h,v 1.3 1993/12/15 16:50:02 genek Exp $ */

/*
 * sigs.h
 *
 *	common header definitions for signature wrappers.
 *
 * Gene Kim
 * Purdue University
 * October 12, 1992
 */

#include <stdio.h>
#include <fcntl.h>
#if !defined(SYSV) || (SYSV > 3)
# include <sys/file.h>
#else
# include <unistd.h>
#endif 	/* SYSV */
#if (defined(SYSV) && (SYSV < 3))
# include <limits.h>
# include <unistd.h>
#endif	/* SVR2 */

#ifndef SEEK_SET
# define SEEK_SET L_SET
#endif

char *pltob64();
extern int printhex;

/* prototypes */
#ifdef __STDC__
int sig_null_get(int, char *, int);
#else
int sig_null_get();
#endif