mirror of
https://github.com/darlinghq/darling-xnu.git
synced 2025-02-17 03:37:43 +00:00
9 lines
220 B
C
9 lines
220 B
C
#ifndef XNU_DARWINTEST_UTILS_H
|
|
#define XNU_DARWINTEST_UTILS_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
/* Misc. utility functions for writing darwintests. */
|
|
bool is_development_kernel(void);
|
|
#endif /* !defined(XNU_DARWINTEST_UTILS_H) */
|