X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fmisc.c;h=966abb021611fc22c78d8c37adfaa0131d33f198;hb=9965b1637d7919f7472eb2eab16abcf9fe2ba3f6;hp=c568159d41d4adf5c43781c4d2afa40f9f62ba19;hpb=d99870c374ff3c25290e15c38a402cbfa3d240e6;p=rocksndiamonds.git diff --git a/src/libgame/misc.c b/src/libgame/misc.c index c568159d..966abb02 100644 --- a/src/libgame/misc.c +++ b/src/libgame/misc.c @@ -1306,7 +1306,7 @@ void clear_mem(void *ptr, unsigned int size) /* various helper functions */ /* ------------------------------------------------------------------------- */ -inline void swap_numbers(int *i1, int *i2) +void swap_numbers(int *i1, int *i2) { int help = *i1; @@ -1314,7 +1314,7 @@ inline void swap_numbers(int *i1, int *i2) *i2 = help; } -inline void swap_number_pairs(int *x1, int *y1, int *x2, int *y2) +void swap_number_pairs(int *x1, int *y1, int *x2, int *y2) { int help_x = *x1; int help_y = *y1;