File: rcsid.h

package info (click to toggle)
tcpspy 1.7d-3.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 148 kB
  • ctags: 106
  • sloc: ansic: 862; lex: 208; makefile: 74; yacc: 62; sh: 37
file content (18 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * rcsid.h - Revision Control System Id macro
 *
 * This file is part of tcpspy, a TCP/IP connection monitor.
 *
 * $Id: rcsid.h,v 1.1 2000/12/19 09:57:21 fyre Stab $
 */

#ifndef RCSID_H
#define RCSID_H

#ifdef __GNUC__
#  define RCSID(x) __attribute__ ((unused)) static char *rcsid = x
#else
#  define RCSID(x) static char *rcsid = x
#endif

#endif