diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-07-21 13:42:04 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-07-24 15:50:00 +0100 |
commit | 1c19a13fd119480a8974427f3b4e27cc3ad25234 (patch) | |
tree | a189ea64a6556cb60a9eec3e9aaa94ccfb155d37 | |
parent | 03c8afda170050cf41e1a420e43f68ff4f177a74 (diff) | |
download | cygnal-1c19a13fd119480a8974427f3b4e27cc3ad25234.tar.gz cygnal-1c19a13fd119480a8974427f3b4e27cc3ad25234.tar.bz2 cygnal-1c19a13fd119480a8974427f3b4e27cc3ad25234.zip |
Add missing NEWPAGE commands to makedoc markup in reent/
makedoc requires a NEWPAGE command to preceed the second and subsequent FUNCTION
commands in a file in order to produce the correct texinfo output.
Add missing NEWPAGE commands needed in reent/execr.c. and reent/signalr.c, which
contain makedoc markup for multiple functions.
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
-rw-r--r-- | newlib/libc/reent/execr.c | 2 | ||||
-rw-r--r-- | newlib/libc/reent/signalr.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/newlib/libc/reent/execr.c b/newlib/libc/reent/execr.c index 744f56ae0..d8026703a 100644 --- a/newlib/libc/reent/execr.c +++ b/newlib/libc/reent/execr.c @@ -69,6 +69,7 @@ _DEFUN (_execve_r, (ptr, name, argv, env), /* +NEWPAGE FUNCTION <<_fork_r>>---Reentrant version of fork @@ -107,6 +108,7 @@ _DEFUN (_fork_r, (ptr), #endif /* +NEWPAGE FUNCTION <<_wait_r>>---Reentrant version of wait diff --git a/newlib/libc/reent/signalr.c b/newlib/libc/reent/signalr.c index 7d8aa7d71..161d53091 100644 --- a/newlib/libc/reent/signalr.c +++ b/newlib/libc/reent/signalr.c @@ -64,6 +64,7 @@ _DEFUN (_kill_r, (ptr, pid, sig), } /* +NEWPAGE FUNCTION <<_getpid_r>>---Reentrant version of getpid |