From: Sebastian B. <sb...@us...> - 2013-12-24 08:58:05
|
Update of /cvsroot/simplemail/simplemail/tests In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28645/tests Modified Files: imap2_unittest.c Log Message: More functions stubs added. Index: imap2_unittest.c =================================================================== RCS file: /cvsroot/simplemail/simplemail/tests/imap2_unittest.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- imap2_unittest.c 24 Dec 2013 08:57:19 -0000 1.8 +++ imap2_unittest.c 24 Dec 2013 08:58:02 -0000 1.9 @@ -39,6 +39,16 @@ { } +void myclosesocket(int fd) +{ + close(fd); +} + +long tcp_errno(void) +{ + return errno; +} + void main_set_progress(unsigned int max_work, unsigned int work) { } @@ -47,6 +57,9 @@ { } +void progmonwnd_update(void) +{ +} /*************************************************************/ |