Checking new RCS ID tags OK

svn path=/trunk/boinc/; revision=4786
This commit is contained in:
Bruce Allen 2004-12-08 00:26:12 +00:00
parent 20eb2f30b2
commit 7e10e25e8b
1 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,4 @@
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
static volatile const char *BOINCrcsid="$Id$";
// The contents of this file are subject to the BOINC Public License
// Version 1.0 (the "License"); you may not use this file except in
// compliance with the License. You may obtain a copy of the License at
@ -560,3 +559,9 @@ int main(int argc, char** argv) {
// files and database are closed by exit handler
exit(0);
}
#ifdef __GNUC__
static volatile const char __attribute__((unused)) *BOINCrcsid="$Id$";
#else
static volatile const char *BOINCrcsid="$Id$";
#endif