comparison src/util.c @ 8433:964d42c74ff7

[gaim-migrate @ 9163] i like this better....what if I want to add 8 to something other than an int! committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 12 Mar 2004 05:01:20 +0000
parents 33cc36f5a7a6
children 3d0178c4f390
comparison
equal deleted inserted replaced
8432:33cc36f5a7a6 8433:964d42c74ff7
2419 *a = '\0'; 2419 *a = '\0';
2420 2420
2421 return out; 2421 return out;
2422 } 2422 }
2423 2423
2424 int
2425 gaim_add_eight(int i)
2426 {
2427 return (i + 8);
2428 }