~ubuntu-branches/ubuntu/warty/tcpspy/warty

« back to all changes in this revision

Viewing changes to rcsid.h

  • Committer: Bazaar Package Importer
  • Author(s): Pablo Lorenzzoni
  • Date: 2002-01-25 00:00:00 UTC
  • Revision ID: james.westby@ubuntu.com-20020125000000-tb043mswgs8cgpdx
Tags: upstream-1.7d
ImportĀ upstreamĀ versionĀ 1.7d

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * rcsid.h - Revision Control System Id macro
 
3
 *
 
4
 * This file is part of tcpspy, a TCP/IP connection monitor.
 
5
 *
 
6
 * $Id: rcsid.h,v 1.1 2000/12/19 09:57:21 fyre Stab $
 
7
 */
 
8
 
 
9
#ifndef RCSID_H
 
10
#define RCSID_H
 
11
 
 
12
#ifdef __GNUC__
 
13
#  define RCSID(x) __attribute__ ((unused)) static char *rcsid = x
 
14
#else
 
15
#  define RCSID(x) static char *rcsid = x
 
16
#endif
 
17
 
 
18
#endif