diff options
author | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-25 16:38:07 +0000 |
---|---|---|
committer | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-25 16:38:07 +0000 |
commit | ccc14161d9bed46c234f582162ccfa4286637f24 (patch) | |
tree | 156c8780128962cdf9e530cb0751efd8f725053d /gcc/gcov-io.h | |
parent | 01b9372d03cb033f5e1ab866d94242031c11c358 (diff) | |
download | gcc-ccc14161d9bed46c234f582162ccfa4286637f24.tar.gz |
* gcov-io.h (__gcov_fork, __gcov_execl, __gcov_execlp, __gcov_execle,
__gcov_execv, __gcov_execvp, __gcov_execve): Do not declare when
inhibit_libc is defined.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81164 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcov-io.h')
-rw-r--r-- | gcc/gcov-io.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/gcov-io.h b/gcc/gcov-io.h index 8e0da0e572a..75abbea479b 100644 --- a/gcc/gcov-io.h +++ b/gcc/gcov-io.h @@ -448,6 +448,7 @@ extern void __gcov_merge_single (gcov_type *, unsigned); consecutive values. */ extern void __gcov_merge_delta (gcov_type *, unsigned); +#ifndef inhibit_libc /* The wrappers around some library functions.. */ extern pid_t __gcov_fork (void); extern int __gcov_execl (const char *, const char *, ...); @@ -456,6 +457,7 @@ extern int __gcov_execle (const char *, const char *, ...); extern int __gcov_execv (const char *, char *const []); extern int __gcov_execvp (const char *, char *const []); extern int __gcov_execve (const char *, char *const [], char *const []); +#endif #endif /* IN_LIBGCOV */ |