From: Jeremy McNamara Date: Wed, 14 Jan 2004 06:44:16 +0000 (+0000) Subject: move cvsid.h into include/asterisk dir. Bug #822 X-Git-Tag: 0.7.1~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c44e6130cc31720a6c0e7d70f96fb9ace55b8a4a;p=thirdparty%2Fasterisk.git move cvsid.h into include/asterisk dir. Bug #822 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2033 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/cvsid.h b/cvsid.h deleted file mode 100755 index 7cfea6b09c..0000000000 --- a/cvsid.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Asterisk -- A telephony toolkit for Linux. - * - * CVSID Macro for including CVS file Id in source files. - * - * Copyright (C) 2004, William Waites - * - * William Waites - * - * This program is free software, distributed under the terms of - * the GNU General Public License. This file has been disclaimed - * to Digium. - * - * To use, in the source file put the lines: - * - * #include - * #ifndef lint - * CVSID("$Id$"); - * #endif /* lint */ - * - * You will then be able to run strings(1) on the resulting - * binary and find out what revisions of each source file were - * used to build it. - * - */ - -#ifndef ASTERISK_CVSID_H -#define ASTERISK_CVSID_H - -#ifdef __GNUC__ -#define CVSID(x) static char __cvsid[] __attribute__ ((unused)) = x -#else -#define CVSID(x) static char __cvsid[] = x -#endif - -#endif /* ASTERISK_CVSID_H */