diff options
Diffstat (limited to 'tests/symbol-scan.pl')
-rwxr-xr-x | tests/symbol-scan.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/symbol-scan.pl b/tests/symbol-scan.pl index 6706aa707..1379299d3 100755 --- a/tests/symbol-scan.pl +++ b/tests/symbol-scan.pl @@ -119,11 +119,13 @@ for my $e (sort @syms) { # CURL_EXTERN - is a define used for libcurl functions that are external, # public. No app or other code should ever use it. # + # CURLINC_ - defines for header dual-include prevention, ignore those. + # # *_LAST and *_LASTENTRY are just prefix for the placeholders used for the # last entry in many enum series. # - if($e =~ /(OBSOLETE|^CURL_EXTERN|_LAST\z|_LASTENTRY\z)/) { + if($e =~ /(OBSOLETE|^CURL_EXTERN|^CURLINC_|_LAST\z|_LASTENTRY\z)/) { $ignored++; next; } |