From 25b88f081076a7beb2331ec219640d1a829cdcc4 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 4 Jul 2012 12:18:04 -0400 Subject: add prototypes for getw/putw --- include/stdio.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/stdio.h b/include/stdio.h index edcf2e6c..3d22220f 100644 --- a/include/stdio.h +++ b/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 -- cgit v1.2.1