diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | misc/mkostemp.c | 1 | ||||
-rw-r--r-- | misc/mkostemps.c | 1 | ||||
-rw-r--r-- | misc/mkstemp.c | 1 | ||||
-rw-r--r-- | misc/mkstemps.c | 1 |
5 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2016-11-22 Andreas Schwab <schwab@suse.de> + + * misc/mkstemp.c: Include <fcntl.h>. + * misc/mkstemps.c: Likewise. + * misc/mkostemp.c: Likewise. + * misc/mkostemps.c: Likewise. + 2016-11-22 Adhemerval Zanella <adhemerva.zanella@linaro.org> [BZ #20847] diff --git a/misc/mkostemp.c b/misc/mkostemp.c index c990bbd..fee2b66 100644 --- a/misc/mkostemp.c +++ b/misc/mkostemp.c @@ -15,6 +15,7 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#include <fcntl.h> #include <stdio.h> #include <stdlib.h> diff --git a/misc/mkostemps.c b/misc/mkostemps.c index fcc6053..a7a87bf 100644 --- a/misc/mkostemps.c +++ b/misc/mkostemps.c @@ -16,6 +16,7 @@ <http://www.gnu.org/licenses/>. */ #include <errno.h> +#include <fcntl.h> #include <stdio.h> #include <stdlib.h> diff --git a/misc/mkstemp.c b/misc/mkstemp.c index 69c6c00..e125803 100644 --- a/misc/mkstemp.c +++ b/misc/mkstemp.c @@ -15,6 +15,7 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#include <fcntl.h> #include <stdio.h> #include <stdlib.h> diff --git a/misc/mkstemps.c b/misc/mkstemps.c index 1f46ef5..217606d 100644 --- a/misc/mkstemps.c +++ b/misc/mkstemps.c @@ -16,6 +16,7 @@ <http://www.gnu.org/licenses/>. */ #include <errno.h> +#include <fcntl.h> #include <stdio.h> #include <stdlib.h> |