diff src/protocols/oscar/util.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 8ab1875e6d09
line wrap: on
line diff
--- a/src/protocols/oscar/util.c	Sat May 17 17:54:38 2003 +0000
+++ b/src/protocols/oscar/util.c	Sat May 17 18:41:02 2003 +0000
@@ -29,7 +29,7 @@
 	return;
 }
 
-faim_export faim_shortfunc int aimutil_putstr(u_char *dest, const char *src, int len)
+faim_export int aimutil_putstr(u_char *dest, const char *src, int len)
 {
 	memcpy(dest, src, len);
 	return len;