mirror of
https://github.com/SmallPond/MIT6.828_OS.git
synced 2026-07-09 21:36:46 +08:00
8 lines
135 B
C
8 lines
135 B
C
#ifndef JOS_INC_PERROR_H
|
|
#define JOS_INC_PERROR_H
|
|
|
|
void perror(const char *s);
|
|
const char *e2s(int e);
|
|
|
|
#endif /* !JOS_INC_PERROR_H */
|