projects
/
pintos-anon
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Make explicit that open doesn't return fd 0 or 1.
[pintos-anon]
/
src
/
lib
/
user
/
stdio.h
1
#ifndef __LIB_USER_STDIO_H
2
#define __LIB_USER_STDIO_H
3
4
int hprintf (int, const char *, ...) PRINTF_FORMAT (2, 3);
5
int vhprintf (int, const char *, va_list) PRINTF_FORMAT (2, 0);
6
7
#endif /* lib/user/stdio.h */