1 /*
2 * sysctl.h
3 * Header file for sysctl.c
4 *
5 * Copyright (C) 1997 Martin von Löwis
6 * Copyright (C) 1997 Régis Duchesne
7 *
8 */
9
10 #ifdef HAVE_CONFIG_H
11 #include "config.h"
12 #endif
13
14 #ifdef DEBUG
15 extern int ntdebug;
16
17 void ntfs_sysctl(int add);
18
19 #define SYSCTL(x) ntfs_sysctl(x)
20 #else
21 #define SYSCTL(x)
22 #endif /* DEBUG */
23
24 /*
25 * Local variables:
26 * c-file-style: "linux"
27 * End:
28 */
29
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.