X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=pico%2Fpico_int.h;h=f53250aa8df1f231096637bccb47fc4249a00c86;hb=4835077e00c2cf7e3dba7bf7801c6aafd9d00dbe;hp=09fb64585c64af4146fc6b6bdb4f93179ba49f63;hpb=5345c2b9bc9b5f8a2d423482358e63af87b9219a;p=picodrive.git diff --git a/pico/pico_int.h b/pico/pico_int.h index 09fb645..f53250a 100644 --- a/pico/pico_int.h +++ b/pico/pico_int.h @@ -907,7 +907,7 @@ void REGPARM(3) sh2_peripheral_write32(unsigned int a, unsigned int d, SH2 *sh2) #endif /* avoid dependency on newer glibc */ -static __inline int isspace_(int c) +static INLINE int isspace_(int c) { return (0x09 <= c && c <= 0x0d) || c == ' '; }