svn commit: r299655 - head/sys/boot/i386/common

Garrett Cooper ngie at FreeBSD.org
Fri May 13 10:59:47 UTC 2016


Author: ngie
Date: Fri May 13 10:59:46 2016
New Revision: 299655
URL: https://svnweb.freebsd.org/changeset/base/299655

Log:
  Add missing prototype for getchar(..)
  
  MFC after: 1 week
  Reported by: clang
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/sys/boot/i386/common/cons.h

Modified: head/sys/boot/i386/common/cons.h
==============================================================================
--- head/sys/boot/i386/common/cons.h	Fri May 13 10:52:02 2016	(r299654)
+++ head/sys/boot/i386/common/cons.h	Fri May 13 10:59:46 2016	(r299655)
@@ -28,6 +28,7 @@ void xputc(int c);
 void putchar(int c);
 int getc(int fn);
 int xgetc(int fn);
+int getchar(void);
 int keyhit(unsigned int secs);
 void getstr(char *cmdstr, size_t cmdstrsize);
 


More information about the svn-src-all mailing list