File: rcsid.h

package info (click to toggle)
cvsps 2.0rc1-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 316 kB
  • ctags: 389
  • sloc: ansic: 4,477; makefile: 69; sh: 26
file content (21 lines) | stat: -rw-r--r-- 530 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright 2001, 2002, 2003 David Mansfield and Cobite, Inc.
 * See COPYING file for license information 
 */

#ifndef _COMMON_RCSID_H
#define _COMMON_RCSID_H

/* RCS Id macro (complements of bod@compusol.com.au (Brendan O'Dea)) */
#ifdef lint
# define RCSID(i)
#else /* lint */
# ifdef __GNUC__
#  define ATTRIB_UNUSED __attribute__ ((unused))
# else /* __GNUC__ */
#  define ATTRIB_UNUSED
# endif /* __GNUC__ */
# define RCSID(i) static char const *rcsid ATTRIB_UNUSED = (i)
#endif /* lint */

#endif /* _COMMON_RCSID_H */