remove compile time guard from previous commit, it is not needed

(C99 guarantees [u]intmax types are at least 64-bits)
This commit is contained in:
plunky 2011-04-04 18:29:47 +00:00
parent 7a9de7239e
commit 0d74ee67d3
1 changed files with 2 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: sdp_get.c,v 1.2 2011/04/04 16:19:25 plunky Exp $ */
/* $NetBSD: sdp_get.c,v 1.3 2011/04/04 18:29:47 plunky Exp $ */
/*-
* Copyright (c) 2009 The NetBSD Foundation, Inc.
@ -30,15 +30,11 @@
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: sdp_get.c,v 1.2 2011/04/04 16:19:25 plunky Exp $");
__RCSID("$NetBSD: sdp_get.c,v 1.3 2011/04/04 18:29:47 plunky Exp $");
#include <sdp.h>
#include <limits.h>
#if INTMAX_MAX < INT64_MAX
#warning INTMAX type is not large enough to hold INT64 values
#endif
/******************************************************************************
* sdp_get_xxxx(data, value)
*