Browse Source

misc: Fix missed improper inline

Alexander von Gluck IV 10 years ago
parent
commit
c92713f4d5
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/misc.h

+ 1
- 1
src/misc.h View File

@@ -85,7 +85,7 @@ void swap_array(int nmemb, size_t nmemb_sz, void *src, void *dst);
85 85
 void swap_ints(int nmemb, unsigned int *x, unsigned int *y) ;
86 86
 void swap_shorts(int nmemb, unsigned short *x, unsigned short *y);
87 87
 
88
-inline int rand_range(int _min, int _max);
88
+int rand_range(int _min, int _max);
89 89
 void xsrand(void);
90 90
 
91 91
 char *last_token(char *string, char tok);

Loading…
Cancel
Save