* libc/include/process.h: Add getpid() declaration.

This commit is contained in:
Christopher Faylor 2001-09-17 21:30:58 +00:00
parent c98b577d40
commit d2d5eb41e4
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Mon Sep 17 17:29:47 2001 Christopher Faylor <cgf@cygnus.com>
* libc/include/process.h: Add getpid() declaration.
2001-09-14 Nick Clifton <nickc@cambridge.redhat.com>
* libc/sys/arm/crt0.S: Add calls to _init and _fini (via atexit)

View File

@ -41,6 +41,7 @@ pid_t sexecv(void *, const char *path, const char * const *argv);
pid_t sexecve(void *, const char *path, const char * const *argv, const char * const *envp);
pid_t sexecvp(void *, const char *path, const char * const *argv);
pid_t sexecvpe(void *, const char *path, const char * const *argv, const char * const *envp);
pid_t getpid(void);
#endif
int cwait(int *, int, int);