Remove $Id$ and RCSID() usage.

These are useless now that we're using git.
This commit is contained in:
Peter Johnson 2011-08-19 10:43:16 -07:00
parent 502eebd339
commit 94ab1135a3
279 changed files with 34 additions and 467 deletions

14
util.h
View file

@ -1,4 +1,4 @@
/* $Id$
/*
* YASM utility functions.
*
* Includes standard headers and defines prototypes for replacement functions
@ -119,18 +119,6 @@
#include <libyasm/compat-queue.h>
#ifdef HAVE_SYS_CDEFS_H
# include <sys/cdefs.h>
#endif
#ifdef __RCSID
# define RCSID(s) __RCSID(s)
#elif defined(__GNUC__) && defined(__ELF__)
# define RCSID(s) __asm__(".ident\t\"" s "\"")
#else
# define RCSID(s) static const char rcsid[] = s
#endif
#ifdef WITH_DMALLOC
# include <dmalloc.h>
# define yasm__xstrdup(str) xstrdup(str)