1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef _LINUX_NTFS_SYSCTL_H
- #define _LINUX_NTFS_SYSCTL_H
- #if defined(DEBUG) && defined(CONFIG_SYSCTL)
- extern int ntfs_sysctl(int add);
- #else
- static inline int ntfs_sysctl(int add)
- {
- return 0;
- }
- #endif
- #endif
|