comparison src/protocols/oscar/rxqueue.c @ 5414:2d9f7d2e3558

[gaim-migrate @ 5790] Removed faim_shortfunc, which was supposed to make 2 functions be declared as inline. There was a patch saying this caused problems with systems where inline was redefined to be something else in config.h, and I would rather not have config.h included in libfaim files. I'm also think the speed difference between having inline and not having it for these 2 functions is negligible, especially when not compiling with -Oanything. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 17 May 2003 18:41:02 +0000
parents 858979ab3867
children 04dc7fe68889
comparison
equal deleted inserted replaced
5413:573501c63fef 5414:2d9f7d2e3558
80 } 80 }
81 81
82 /* 82 /*
83 * Read a FLAP header from conn into fr, and return the number of bytes in the payload. 83 * Read a FLAP header from conn into fr, and return the number of bytes in the payload.
84 */ 84 */
85 static faim_shortfunc int aim_get_command_flap(aim_session_t *sess, aim_conn_t *conn, aim_frame_t *fr) 85 static int aim_get_command_flap(aim_session_t *sess, aim_conn_t *conn, aim_frame_t *fr)
86 { 86 {
87 fu8_t flaphdr_raw[6]; 87 fu8_t flaphdr_raw[6];
88 aim_bstream_t flaphdr; 88 aim_bstream_t flaphdr;
89 fu16_t payloadlen; 89 fu16_t payloadlen;
90 90