Skip to content

Commit

Permalink
fix stdlib.h
Browse files Browse the repository at this point in the history
  • Loading branch information
bebbo committed Jan 25, 2018
1 parent 984ebc1 commit f0ca5c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/stdlib.h
Expand Up @@ -97,7 +97,7 @@ __BEGIN_DECLS
#ifdef __NO_INLINE__
__stdargs int abs __P((int));
#else
__MY_INLINE __stdargs int abs(int j) { return j>=0?j:-j; }
__MY_INLINE__ __stdargs int abs(int j) { return j>=0?j:-j; }
#endif
__stdargs void abort __P((void));
__stdargs int atexit __P((__stdargs void (*)(void)));
Expand Down

0 comments on commit f0ca5c2

Please sign in to comment.