summaryrefslogtreecommitdiffstats
path: root/fs/ntfs/sysctl.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ntfs/sysctl.h')
-rw-r--r--fs/ntfs/sysctl.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/fs/ntfs/sysctl.h b/fs/ntfs/sysctl.h
new file mode 100644
index 000000000..082e34aba
--- /dev/null
+++ b/fs/ntfs/sysctl.h
@@ -0,0 +1,24 @@
+/*
+ * sysctl.h
+ * Header file for sysctl.c
+ *
+ * Copyright (C) 1997 Martin von Löwis
+ * Copyright (C) 1997 Régis Duchesne
+ *
+ */
+
+#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:
+ */