1 /* 2 * sysctl.h - Header file for sysctl.c 3 * 4 * Copyright (C) 1997 Martin von L�wis 5 * Copyright (C) 1997 R�gis Duchesne 6 */ 7 8 #ifdef DEBUG 9 extern int ntdebug; 10 11 void ntfs_sysctl(int add); 12 13 #define SYSCTL(x) ntfs_sysctl(x) 14 #else 15 #define SYSCTL(x) 16 #endif /* DEBUG */ 17 18