xiaoxiang781216 commented on a change in pull request #1321:
URL: https://github.com/apache/incubator-nuttx/pull/1321#discussion_r448172191
##########
File path: include/stdlib.h
##########
@@ -147,15 +146,7 @@ int on_exit(CODE void (*func)(int, FAR void *), FAR
void *arg);
/* _Exit() is a stdlib.h equivalent to the unistd.h _exit() function */
void _exit(int status); /* See unistd.h */
-
-#ifdef CONFIG_HAVE_INLINE
-static inline void _Exit(int s)
-{
- _exit(s);
-}
-#else
-#define _Exit(s) _exit(s)
-#endif
+void _Exit(int status);
Review comment:
Done.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]