mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2025-12-19 09:40:05 -06:00
17 lines
293 B
C
17 lines
293 B
C
// Copyright 2025 XTX Markets Technologies Limited
|
|
//
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#ifndef _TERNFS_SYSCTL_H
|
|
#define _TERNFS_SYSCTL_H
|
|
|
|
#include <linux/init.h>
|
|
|
|
extern int ternfs_debug_output;
|
|
|
|
int __init ternfs_sysctl_init(void);
|
|
void __cold ternfs_sysctl_exit(void);
|
|
|
|
#endif
|
|
|