From d26c10f85250e2940905156e48ef34092f3f3c90 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Fri, 8 Dec 2017 18:58:54 +0100 Subject: [PATCH] nt: remove unnecessary '#ifdef _NTDEF_' condition --- src/nt.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/nt.h b/src/nt.h index d50656c..8659100 100644 --- a/src/nt.h +++ b/src/nt.h @@ -6,10 +6,8 @@ WEPOLL_INTERNAL int nt_global_init(void); -#ifndef _NTDEF_ typedef LONG NTSTATUS; typedef NTSTATUS* PNTSTATUS; -#endif #ifndef NT_SUCCESS #define NT_SUCCESS(status) (((NTSTATUS)(status)) >= 0)