aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2013-12-10 21:04:14 +0200
committerArnold D. Robbins <arnold@skeeve.com>2013-12-10 21:04:14 +0200
commit71e06c39df20400fbc04d7a3eba04700c27928f8 (patch)
tree71ea32d90dbe2af7a25f8d2dcaac8b13d32c98de /awk.h
parent1edf4055bc5d91cd77228da9b2756ac8f4e7b004 (diff)
downloadegawk-71e06c39df20400fbc04d7a3eba04700c27928f8.tar.gz
egawk-71e06c39df20400fbc04d7a3eba04700c27928f8.tar.bz2
egawk-71e06c39df20400fbc04d7a3eba04700c27928f8.zip
Remove unneeded Floor and Ceil wrapper functions.
Diffstat (limited to 'awk.h')
-rw-r--r--awk.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/awk.h b/awk.h
index 6c6e8405..469d6b63 100644
--- a/awk.h
+++ b/awk.h
@@ -1661,13 +1661,6 @@ extern NODE **function_list(bool sort);
extern void print_vars(NODE **table, Func_print print_func, FILE *fp);
/* floatcomp.c */
-#ifdef VMS /* VMS linker weirdness? */
-#define Ceil gawk_ceil
-#define Floor gawk_floor
-#endif
-
-extern AWKNUM Floor(AWKNUM n);
-extern AWKNUM Ceil(AWKNUM n);
#ifdef HAVE_UINTMAX_T
extern uintmax_t adjust_uint(uintmax_t n);
#else