- Move from using include guards to pragma once.
[reactos.git] / reactos / drivers / network / tcpip / include / debug.h
index 7f6d86b..303d66a 100644 (file)
@@ -6,8 +6,8 @@
  * DEFINES:     DBG     - Enable debug output
  *              NASSERT - Disable assertions
  */
-#ifndef __DEBUG_H
-#define __DEBUG_H
+
+#pragma once
 
 #define MIN_TRACE      ((1 << DPFLTR_WARNING_LEVEL))
 #define MID_TRACE      ((1 << DPFLTR_WARNING_LEVEL) | (1 << DPFLTR_TRACE_LEVEL))
@@ -75,6 +75,4 @@
    ASSERT(((PVOID)_x) != (PVOID)0xcccccccc); \
    ASSERT(((PVOID)_x) >= (PVOID)0x80000000);
 
-#endif /* __DEBUG_H */
-
 /* EOF */