Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
f4grx
NuttX RTOS
Commits
7be1a962
Commit
7be1a962
authored
12 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
_Exit() is the stdlib.h equivalent of unistd.h's _exit()
parent
fc4c7145
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/stdlib.h
+5
-0
5 additions, 0 deletions
include/stdlib.h
with
5 additions
and
0 deletions
include/stdlib.h
+
5
−
0
View file @
7be1a962
...
...
@@ -140,6 +140,11 @@ int atexit(CODE void (*func)(void));
int
on_exit
(
CODE
void
(
*
func
)(
int
,
FAR
void
*
),
FAR
void
*
arg
);
#endif
/* _Exit() is a stdlib.h equivalent to the unistd.h _exit() function */
void
_exit
(
int
status
);
/* See unistd.h */
#define _Exit(s) _exit(s)
/* String to binary conversions */
long
strtol
(
const
char
*
,
char
**
,
int
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment