aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2011-01-06 23:23:28 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2011-01-06 23:23:28 +0000
commitb0beaec6a19b496bed93a040c9fcddc65abc4806 (patch)
tree22c6d008ad4b5bb6ae7fd575126e70f96ebcd8a0
parente3e9007f28634ec2c63fb5da0e21c158141d0a94 (diff)
Prohibit strtoull(): Windows doesn't have it. (Putting this in just saves waiting for the buildbot to complain.)
svn path=/trunk/; revision=35410
-rwxr-xr-xtools/checkAPIs.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/checkAPIs.pl b/tools/checkAPIs.pl
index 7d64a8306e..5158fb6755 100755
--- a/tools/checkAPIs.pl
+++ b/tools/checkAPIs.pl
@@ -64,6 +64,8 @@ my %APIs = (
'htons',
'strdup',
'strndup',
+ # Windows doesn't have this; use g_ascii_strtoull() instead
+ 'strtoull',
### non-ANSI C
# use memset, memcpy, memcmp instead of these:
'bzero',
@@ -129,7 +131,7 @@ my %APIs = (
# Some of the entries are commented out since they are currently
# being used in Wireshark and since the replacement functionality
# is not available in all the GLib versions that Wireshark
- # currently supports (ie: versions starting with GLib 2.4).
+ # currently supports (ie: versions starting with GLib 2.4)).
'G_ALLOC_AND_FREE',
'G_ALLOC_ONLY',
'g_allocator_free', # "use slice allocator" (avail since 2.10,2.14)