summaryrefslogtreecommitdiffstats
path: root/fs/ntfs/sysctl.h
blob: e2a02086b3416fd9df59270da6ee88c8ca357023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 *  sysctl.h
 *  Header file for sysctl.c
 *
 *  Copyright (C) 1997 Martin von Löwis
 *  Copyright (C) 1997 Régis Duchesne
 *
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#ifdef DEBUG
extern int ntdebug;

void ntfs_sysctl(int add);

#define SYSCTL(x)	ntfs_sysctl(x)
#else
#define SYSCTL(x)
#endif /* DEBUG */

/*
 * Local variables:
 * c-file-style: "linux"
 * End:
 */