diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-10 21:04:14 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-10 21:04:14 +0200 |
commit | 71e06c39df20400fbc04d7a3eba04700c27928f8 (patch) | |
tree | 71ea32d90dbe2af7a25f8d2dcaac8b13d32c98de /awk.h | |
parent | 1edf4055bc5d91cd77228da9b2756ac8f4e7b004 (diff) | |
download | egawk-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.h | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -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 |