add static to function declaration
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1677 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
2f0f2068b9
commit
da55b1857f
|
@ -35,8 +35,8 @@ struct ftp_session
|
|||
};
|
||||
static struct ftp_session* session_list = NULL;
|
||||
|
||||
int ftp_process_request(struct ftp_session* session, char * buf);
|
||||
int ftp_get_filesize(char *filename);
|
||||
static int ftp_process_request(struct ftp_session* session, char * buf);
|
||||
static int ftp_get_filesize(char *filename);
|
||||
|
||||
static struct ftp_session* ftp_new_session()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue