Fixed Copyright.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7490 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2010-04-13 13:37:13 +00:00
parent 8a2049d64c
commit a9f8b70019
1 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ public:
int fput_copyright(const char *str, FILE *f) {
fputs("#\n", f);
fputs("# \"$Id: $\"\n", f);
fputs("# \"$Id:$\"\n", f);
fputs("#\n", f);
fprintf(f, "# %s\n", str);
fputs("#\n", f);
@ -124,7 +124,7 @@ public:
int fput_footer(FILE *f) {
fputs("\n", f);
fputs("#\n", f);
fputs("# End of \"$Id: $\".\n", f);
fputs("# End of \"$Id:$\".\n", f);
fputs("#\n", f);
return 0;
}