/usr/include/libipv1/tmpl.h is in libpsi3-dev 3.4.0-6+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | /*! \file
\ingroup IPV1
\brief Enter brief description of file here
*/
#ifndef _psi_src_lib_libipv1_tmpl_h_
#define _psi_src_lib_libipv1_tmpl_h_
#ifdef __cplusplus
extern "C" {
#endif
#ifdef DEC
#define NO_CONST
#endif
#ifdef NCUBE_V2
#define NO_CONST
#endif
#ifdef NO_CONST
#define CONST
#else
#define CONST const
#endif
#define VOID void
#define VOID_PTR void *
#ifdef PROTO_LIBRARY
VOID_PTR malloc(size_t);
VOID_PTR realloc(VOID_PTR,size_t);
VOID free(VOID_PTR);
FILE *fopen(CONST char *, CONST char *);
int fclose(FILE *);
int fprintf(FILE *, CONST char *, ... );
int printf(CONST char *, ... );
int sprintf(char *, CONST char *, ... );
VOID perror(CONST char *);
VOID exit(int);
int strcmp(CONST char *, CONST char *);
int strlen(CONST char *);
char *strcpy(char *, CONST char *);
char *strcat(char *, CONST char *);
/* These are needed for getc and putc (to avoid sun3 gcc warnings). */
int _filbuf(void), _flsbuf(void);
int yylex(void);
int yyparse(void);
/* This is for gcc. */
void abort( void );
#endif /* PROTO_LIBRARY */
#ifdef __cplusplus
}
#endif
#endif /* header guard */
|