diff options
| author | Ian C <ianc@noddybox.co.uk> | 2026-06-15 00:59:21 +0100 |
|---|---|---|
| committer | Ian C <ianc@noddybox.co.uk> | 2026-06-15 00:59:21 +0100 |
| commit | ad34aea41cdc4d10afe227a02b99e276a66eb630 (patch) | |
| tree | 4933ef80888a85a95b899d135ca8dc2e81504a01 /src | |
| parent | fc4ab37b775b1c6f2667529033122bee3c644585 (diff) | |
Removed CVS ident strings
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.c | 4 | ||||
| -rw-r--r-- | src/config.h | 2 | ||||
| -rw-r--r-- | src/exit.c | 4 | ||||
| -rw-r--r-- | src/exit.h | 2 | ||||
| -rw-r--r-- | src/expr.h | 2 | ||||
| -rw-r--r-- | src/font.h | 2 | ||||
| -rw-r--r-- | src/gfx.h | 2 | ||||
| -rw-r--r-- | src/gui.c | 3 | ||||
| -rw-r--r-- | src/gui.h | 2 | ||||
| -rw-r--r-- | src/main.c | 1 | ||||
| -rw-r--r-- | src/memmenu.c | 4 | ||||
| -rw-r--r-- | src/memmenu.h | 2 | ||||
| -rw-r--r-- | src/util.c | 4 | ||||
| -rw-r--r-- | src/util.h | 4 | ||||
| -rw-r--r-- | src/z80.c | 4 | ||||
| -rw-r--r-- | src/z80.h | 4 | ||||
| -rw-r--r-- | src/z80_config.h | 4 | ||||
| -rw-r--r-- | src/z80_private.h | 4 | ||||
| -rw-r--r-- | src/zx81.c | 3 | ||||
| -rw-r--r-- | src/zx81.h | 2 |
20 files changed, 15 insertions, 44 deletions
diff --git a/src/config.c b/src/config.c index 2266f6a..5a2f773 100644 --- a/src/config.c +++ b/src/config.c @@ -23,16 +23,12 @@ Config file */ -static const char ident[]="$Id$"; - #include <stdlib.h> #include <stdio.h> #include <string.h> #include "exit.h" #include "config.h" -static const char ident_h[]=EZX81_CONFIG_H; - #ifndef TRUE #define TRUE 1 #endif diff --git a/src/config.h b/src/config.h index 4613db3..d7f8967 100644 --- a/src/config.h +++ b/src/config.h @@ -25,7 +25,7 @@ */ #ifndef EZX81_CONFIG_H -#define EZX81_CONFIG_H "$Id$" +#define EZX81_CONFIG_H /* Integer settings @@ -23,16 +23,12 @@ Provides a common error exit point */ -static const char ident[]="$Id$"; - #include <stdlib.h> #include <stdarg.h> #include "exit.h" #include <SDL.h> -static const char ident_h[]=EZX81_EXIT_H; - /* ---------------------------------------- EXPORTED INTERFACES */ @@ -25,7 +25,7 @@ */ #ifndef EZX81_EXIT_H -#define EZX81_EXIT_H "$Id$" +#define EZX81_EXIT_H /* Exit @@ -28,7 +28,7 @@ */ #ifndef EXPR_H -#define EXPR_H "$Id$" +#define EXPR_H /* ---------------------------------------- INTERFACES */ @@ -25,7 +25,7 @@ */ #ifndef EZX81_FONT_H -#define EZX81_FONT_H "$Id$" +#define EZX81_FONT_H typedef unsigned char FontChar[64]; @@ -25,7 +25,7 @@ */ #ifndef EZX81_GFX_H -#define EZX81_GFX_H "$Id$" +#define EZX81_GFX_H #include "SDL.h" @@ -23,8 +23,6 @@ Basic GUI routines */ -static const char ident[]="$Id$"; - #include <stdlib.h> #include <stdio.h> #include <string.h> @@ -36,7 +34,6 @@ static const char ident[]="$Id$"; #include "util.h" #include "exit.h" -static const char ident_h[]=EZX81_GUI_H; /* ---------------------------------------- MACROS */ @@ -25,7 +25,7 @@ */ #ifndef EZX81_GUI_H -#define EZX81_GUI_H "$Id$" +#define EZX81_GUI_H #include "SDL.h" @@ -125,7 +125,6 @@ int main(int argc, char *argv[]) "F1 - Help \n" "F2 - About \n" "F3 - View ZX81 keyboad \n" - "F10 - Close all open tape files \n" "F11 - Memory Menu \n" "F12 - Toggle onscreen trace "); break; diff --git a/src/memmenu.c b/src/memmenu.c index 609d8bc..0702a58 100644 --- a/src/memmenu.c +++ b/src/memmenu.c @@ -23,8 +23,6 @@ Provides the memory menu */ -static const char ident[]="$Id$"; - #include <stdlib.h> #include <stdio.h> #include <string.h> @@ -39,8 +37,6 @@ static const char ident[]="$Id$"; #include <SDL.h> -static const char ident_h[]=EZX81_MEMMENU_H; - #ifndef TRUE #define TRUE 1 #endif diff --git a/src/memmenu.h b/src/memmenu.h index 1caecb5..e49d3d1 100644 --- a/src/memmenu.h +++ b/src/memmenu.h @@ -25,7 +25,7 @@ */ #ifndef EZX81_MEMMENU_H -#define EZX81_MEMMENU_H "$Id$" +#define EZX81_MEMMENU_H #include "z80.h" @@ -23,8 +23,6 @@ Usual library wrappers and utils */ -static const char ident[]="$Id$"; - #include <stdio.h> #include <string.h> #include <stdarg.h> @@ -32,8 +30,6 @@ static const char ident[]="$Id$"; #include "util.h" #include "exit.h" -static const char ident_h[]=ESPEC_UTIL_H; - /* ---------------------------------------- MACROS */ @@ -24,8 +24,8 @@ */ -#ifndef ESPEC_UTIL_H -#define ESPEC_UTIL_H "$Id$" +#ifndef EZX81_UTIL_H +#define EZX81_UTIL_H #include <stdlib.h> @@ -31,10 +31,6 @@ #include "z80.h" #include "z80_private.h" -static const char ident[]="$Id$"; -static const char ident_z80_header[]=Z80_H; -static const char ident_z80_private_header[]=Z80_PRIVATE_H; - Z80Label *z80_labels=NULL; /* ---------------------------------------- PRIVATE FUNCTIONS @@ -20,12 +20,12 @@ ------------------------------------------------------------------------- - $Id$ + Z80 CPU */ #ifndef Z80_H -#define Z80_H "$Id$" +#define Z80_H /* Configuration */ diff --git a/src/z80_config.h b/src/z80_config.h index af36944..7236a4e 100644 --- a/src/z80_config.h +++ b/src/z80_config.h @@ -20,12 +20,12 @@ ------------------------------------------------------------------------- - $Id$ + Z80 Config */ #ifndef Z80_CONFIG_H -#define Z80_CONFIG_H "$Id$" +#define Z80_CONFIG_H /* This file defines various compile-time configuration options diff --git a/src/z80_private.h b/src/z80_private.h index be45e56..db0c9c2 100644 --- a/src/z80_private.h +++ b/src/z80_private.h @@ -20,14 +20,12 @@ ------------------------------------------------------------------------- - $Id$ - Private macros for Z80 */ #ifndef Z80_PRIVATE_H -#define Z80_PRIVATE_H "$Id$" +#define Z80_PRIVATE_H #include "z80_config.h" @@ -23,8 +23,6 @@ Provides the emulation for the ZX81 */ -static const char ident[]="$Id$"; - #include <stdlib.h> #include <stdio.h> #include <string.h> @@ -35,7 +33,6 @@ static const char ident[]="$Id$"; #include "util.h" #include "exit.h" -static const char ident_h[]=EZX81_ZX81H; #ifndef TRUE #define TRUE 1 @@ -25,7 +25,7 @@ */ #ifndef EZX81_ZX81H -#define EZX81_ZX81H "$Id$" +#define EZX81_ZX81H #include "z80.h" #include "SDL.h" |
