Files
riscv-operating-system-mooc/code/os/11-syscall/user_api.h
2021-04-01 20:02:31 +08:00

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__ */