diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/checkposix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/checkposix b/bin/checkposix index bca259d..6bc8f7d 100755 --- a/bin/checkposix +++ b/bin/checkposix @@ -136,7 +136,7 @@ foreach $arg (@ARGV) { # These are Windows system calls. Ignore them. next if $name =~ /^(_get_osfhandle|GetFileInformationByHandle|SetFilePointer|GetLastError|SetEndOfFile)$/; - next if $name =~ /^(FindNextFile|FindClose|_tzset|Wgettimeofday|GetSystemTimeAsFileTime|Wgetlogin|GetUserName)$/; + next if $name =~ /^(FindNextFile|FindClose|_tzset|Wgettimeofday|GetSystemTimeAsFileTime|GetUserName)$/; next if $name =~ /^(DeleteCriticalSection|TlsFree|TlsGetValue|CreateThread)$/; next if $name =~ /^(ExpandEnvironmentStringsA|LockFileEx|UnlockFileEx)$/; next if $name =~ /^(DllMain|LocalAlloc|LocalFree)$/; |