Files
my-os-project2/ulib/system/system.h

10 lines
221 B
C

#ifndef ULIB_SYSTEM_SYSTEM_H_
#define ULIB_SYSTEM_SYSTEM_H_
#include <stdint.h>
void sys_debugprint(const char *string);
int32_t sys_processctl(uint64_t pid, uint64_t cmd, void *extra);
#endif // ULIB_SYSTEM_SYSTEM_H_