diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 18:25:55 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 18:52:00 +0200 |
commit | b41bd5bc83b23f62f6f0815d20ed1e1185c58086 (patch) | |
tree | 9c2e9a6a37de9eef8efca447fbd4a87b0d3a0923 /posix/spawn_int.h | |
parent | 83b09837ed5c106840d0f069a81eed41a646bff3 (diff) | |
download | glibc-b41bd5bc83b23f62f6f0815d20ed1e1185c58086.tar glibc-b41bd5bc83b23f62f6f0815d20ed1e1185c58086.tar.gz glibc-b41bd5bc83b23f62f6f0815d20ed1e1185c58086.tar.bz2 glibc-b41bd5bc83b23f62f6f0815d20ed1e1185c58086.zip |
posix: Remove internal_function attribute
Diffstat (limited to 'posix/spawn_int.h')
-rw-r--r-- | posix/spawn_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/spawn_int.h b/posix/spawn_int.h index c60eb948bb..6ada827f55 100644 --- a/posix/spawn_int.h +++ b/posix/spawn_int.h @@ -66,6 +66,6 @@ extern int __spawni (pid_t *pid, const char *path, /* Return true if FD falls into the range valid for file descriptors. The check in this form is mandated by POSIX. */ -bool __spawn_valid_fd (int fd) internal_function attribute_hidden; +bool __spawn_valid_fd (int fd) attribute_hidden; #endif /* _SPAWN_INT_H */ |