mirror of
https://github.com/cccriscv/mini-riscv-os.git
synced 2025-11-16 04:24:33 +00:00
8 lines
143 B
C
8 lines
143 B
C
#ifndef __USER_API_H__
|
|
#define __USER_API_H__
|
|
|
|
/* user mode syscall APIs */
|
|
extern int gethid(unsigned int *hid);
|
|
|
|
#endif /* __USER_API_H__ */
|