summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/c.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/include/c.h b/src/include/c.h
index 65e91a6b899..dfc366b026f 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -334,16 +334,6 @@
(N)
/*
- * dummyret is used to set return values in macros that use ?: to make
- * assignments. gcc wants these to be void, other compilers like char
- */
-#ifdef __GNUC__ /* GNU cc */
-#define dummyret void
-#else
-#define dummyret char
-#endif
-
-/*
* Generic function pointer. This can be used in the rare cases where it's
* necessary to cast a function pointer to a seemingly incompatible function
* pointer type while avoiding gcc's -Wcast-function-type warnings.