mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
make function static
This commit is contained in:
parent
b324a382e2
commit
4b335ab464
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue