From b65c133f80644d7609d507f37f83b9836baaedd3 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Sun, 13 May 2012 12:42:51 +0000 Subject: [PATCH] stdin is already defined by stdio.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix compiler warnings: pn53x-tamashell.c: In function ‘main’: pn53x-tamashell.c:79: warning: nested extern declaration of ‘__stdinp’ pn53x-tamashell.c:79: warning: redundant redeclaration of ‘__stdinp’ /usr/include/stdio.h:164: warning: previous declaration of ‘__stdinp’ was here --- examples/pn53x-tamashell.c | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/pn53x-tamashell.c b/examples/pn53x-tamashell.c index 9b2145a..86731ea 100644 --- a/examples/pn53x-tamashell.c +++ b/examples/pn53x-tamashell.c @@ -76,7 +76,6 @@ int main(int argc, const char* argv[]) uint8_t abtTx[MAX_FRAME_LEN]; size_t szRx = sizeof(abtRx); size_t szTx; - extern FILE* stdin; FILE* input = NULL; if (argc >= 2) {