summaryrefslogtreecommitdiff
path: root/src/z-util.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2014-06-07 08:41:37 +0200
committerBardur Arantsson <bardur@scientician.net>2014-06-27 17:51:48 +0200
commit757f5c88ff79073ebd286a9b610ee56ba64e6495 (patch)
tree42a43c038ffefd8b86afe9a87147af339b5d6f38 /src/z-util.c
parent66c6c68e082ef28aaebd29ac1dc54f11c4ff7b9b (diff)
Remove dead code
Diffstat (limited to 'src/z-util.c')
-rw-r--r--src/z-util.c57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/z-util.c b/src/z-util.c
index 4e10a67b..95f11d7a 100644
--- a/src/z-util.c
+++ b/src/z-util.c
@@ -67,63 +67,6 @@ cptr argv0 = NULL;
/*
- * A routine that does nothing
- */
-void func_nothing(void)
-{
- /* Do nothing */
-}
-
-
-/*
- * A routine that always returns "success"
- */
-errr func_success(void)
-{
- return (0);
-}
-
-
-/*
- * A routine that always returns a simple "problem code"
- */
-errr func_problem(void)
-{
- return (1);
-}
-
-
-/*
- * A routine that always returns a simple "failure code"
- */
-errr func_failure(void)
-{
- return ( -1);
-}
-
-
-
-/*
- * A routine that always returns "true"
- */
-bool_ func_true(void)
-{
- return (1);
-}
-
-
-/*
- * A routine that always returns "false"
- */
-bool_ func_false(void)
-{
- return (0);
-}
-
-
-
-
-/*
* Determine if string "t" is equal to string "t"
*/
bool_ streq(cptr a, cptr b)