File: rcsid.h

package info (click to toggle)
tcpspy 1.7d-9
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 288 kB
  • ctags: 237
  • sloc: ansic: 2,276; lex: 467; yacc: 133; makefile: 78; sh: 42
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