xref: /linux/tools/testing/selftests/sched_ext/util.h (revision 870b7fdc660b38c4e1bd8bf48e62aa352ddf8f42)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (c) 2024 Meta Platforms, Inc. and affiliates.
4  * Copyright (c) 2024 David Vernet <void@manifault.com>
5  */
6 
7 #ifndef __SCX_TEST_UTIL_H__
8 #define __SCX_TEST_UTIL_H__
9 
10 long file_read_long(const char *path);
11 int file_write_long(const char *path, long val);
12 
13 #endif // __SCX_TEST_H__
14