make function static

This commit is contained in:
Eric House 2013-01-26 18:36:40 -08:00
parent b324a382e2
commit 4b335ab464
2 changed files with 3 additions and 3 deletions

View file

@ -79,6 +79,8 @@
#define DEFAULT_PORT 10997
#define DEFAULT_LISTEN_PORT 4998
static int blocking_read( int fd, unsigned char* buf, int len );
XP_Bool
file_exists( const char* fileName )
{
@ -1071,7 +1073,7 @@ linux_close_socket( CommonGlobals* cGlobals )
close( socket );
}
int
static int
blocking_read( int fd, unsigned char* buf, const int len )
{
int nRead = 0;

View file

@ -73,8 +73,6 @@ XP_Bool getDictPath( const LaunchParams *params, const char* name,
GSList* listDicts( const LaunchParams *params );
void saveGame( CommonGlobals* cGlobals );
int blocking_read( int fd, unsigned char* buf, int len );
void linux_close_socket( CommonGlobals* cGlobals );
#ifdef KEYBOARD_NAV