diff options
author | vin <git@vineetk.net> | 2024-01-15 18:52:15 -0500 |
---|---|---|
committer | vin <git@vineetk.net> | 2024-01-15 18:52:15 -0500 |
commit | 39b43b676e9aa8f549fea6fca7a6b7fd7891de69 (patch) | |
tree | 2559e89a4398c5bbe278c01f7549a9cfde3b6d7f /lib/fnv/have_ulong64.c | |
parent | 8c8e1ad4d3f6a197cc7a0550940e0c71d84c050e (diff) |
remove more unused libraries
Diffstat (limited to 'lib/fnv/have_ulong64.c')
-rw-r--r-- | lib/fnv/have_ulong64.c | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/lib/fnv/have_ulong64.c b/lib/fnv/have_ulong64.c deleted file mode 100644 index 5c06262388..0000000000 --- a/lib/fnv/have_ulong64.c +++ /dev/null @@ -1,58 +0,0 @@ -/* - * have_ulong64 - Determine if we have a 64 bit unsigned long long - * - * usage: - * have_ulong64 > longlong.h - * - * Not all systems have a 'long long type' so this may not compile on - * your system. - * - * This prog outputs the define: - * - * HAVE_64BIT_LONG_LONG - * defined ==> we have a 64 bit unsigned long long - * undefined ==> we must simulate a 64 bit unsigned long long - */ -/* - * - * Please do not copyright this code. This code is in the public domain. - * - * LANDON CURT NOLL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, - * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO - * EVENT SHALL LANDON CURT NOLL BE LIABLE FOR ANY SPECIAL, INDIRECT OR - * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF - * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR - * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - * PERFORMANCE OF THIS SOFTWARE. - * - * By: - * chongo <Landon Curt Noll> /\oo/\ - * http://www.isthe.com/chongo/ - * - * Share and Enjoy! :-) - */ - -/* - * have the compiler try its hand with unsigned and signed long longs - */ -#if ! defined(NO64BIT_LONG_LONG) -unsigned long long val = 1099511628211ULL; -#endif /* NO64BIT_LONG_LONG */ - -int -main(void) -{ - /* - * ensure that the length of long long val is what we expect - */ -#if defined(NO64BIT_LONG_LONG) - printf("#undef HAVE_64BIT_LONG_LONG\t/* no */\n"); -#else /* NO64BIT_LONG_LONG */ - if (val == 1099511628211ULL && sizeof(val) == 8) { - printf("#define HAVE_64BIT_LONG_LONG\t/* yes */\n"); - } -#endif /* NO64BIT_LONG_LONG */ - - /* exit(0); */ - return 0; -} |