소스 검색

add prototypes for getw/putw

Rich Felker 12 년 전
부모
커밋
25b88f0810
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      include/stdio.h

+ 2 - 0
include/stdio.h

@@ -168,6 +168,8 @@ void clearerr_unlocked(FILE *);
 int feof_unlocked(FILE *);
 int ferror_unlocked(FILE *);
 int fileno_unlocked(FILE *);
+int getw(FILE *);
+int putw(int, FILE *);
 #endif
 
 #ifdef _GNU_SOURCE