]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/testcvsKeyWords.C
Compilation warning removed
[u/mrichter/AliRoot.git] / ITS / testcvsKeyWords.C
CommitLineData
fda10b4f 1void testcvsKeyWords(){
2 // This macro tests the cvs keywords Date and Revision
3 // Inputs:
4 // none.
5 // Outputs:
6 // none.
7 // Return:
8 // none.
9 const Char_t *cvsDate="$Date$";
10 const Char_t *cvsRevision="$Revision$";
11 const Char_t *cvsId="$Id$";
12 Char_t string[100];
13
14 sprintf(string,"%s %s %s",cvsDate,cvsRevision,cvsId);
15 printf("%s\n",string);
16}