mirror of
https://github.com/plctlab/riscv-operating-system-mooc.git
synced 2025-12-05 23:23:26 +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__ */
|