summaryrefslogtreecommitdiff
path: root/src/z-util.h
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2014-06-27 18:05:52 +0200
committerBardur Arantsson <bardur@scientician.net>2014-06-27 18:05:52 +0200
commit899b8fb81a1d5fa66fa842e2ddc4f25e97231ae7 (patch)
tree13a1d7a602e987fc8e588c3012865ca518217119 /src/z-util.h
parentabf567b36fbaf67233c20345342536f754ae65ac (diff)
Remove unused variables and argv0
Diffstat (limited to 'src/z-util.h')
-rw-r--r--src/z-util.h33
1 files changed, 1 insertions, 32 deletions
diff --git a/src/z-util.h b/src/z-util.h
index b9554637..e9bbf873 100644
--- a/src/z-util.h
+++ b/src/z-util.h
@@ -8,41 +8,10 @@ extern "C" {
/*
- * Extremely basic stuff, like global temp and constant variables.
- * Also, some very useful low level functions, such as "streq()".
- * All variables and functions in this file are "addressable".
+ * Extremely basic stuff, like "streq()".
*/
-/**** Available variables ****/
-
-/* Temporary Vars */
-extern char char_tmp;
-extern byte byte_tmp;
-extern sint sint_tmp;
-extern uint uint_tmp;
-extern long long_tmp;
-extern huge huge_tmp;
-extern errr errr_tmp;
-
-/* Temporary Pointers */
-extern cptr cptr_tmp;
-extern vptr vptr_tmp;
-
-
-/* Constant pointers (NULL) */
-extern cptr cptr_null;
-extern vptr vptr_null;
-
-
-/* A bizarre vptr that always points at itself */
-extern vptr vptr_self;
-
-
-/* A cptr to the name of the program */
-extern cptr argv0;
-
-
/* Aux functions */
extern void (*plog_aux)(cptr);
extern void (*quit_aux)(cptr);