doc: use ASCII in .texi files where UTF-8 isn't needed
[gnulib.git] / lib / openat-safer.c
index f6977fd..d0dc2d7 100644 (file)
@@ -1,6 +1,6 @@
 /* Invoke openat, but avoid some glitches.
 
-   Copyright (C) 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+   Copyright (C) 2005-2006, 2008-2014 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -22,7 +22,6 @@
 #include "fcntl-safer.h"
 
 #include <fcntl.h>
-#include "openat.h" /* FIXME - <fcntl.h> should be sufficient.  */
 #include <stdarg.h>
 #include "unistd-safer.h"
 
@@ -37,7 +36,7 @@ openat_safer (int fd, char const *file, int flags, ...)
       va_start (ap, flags);
 
       /* We have to use PROMOTED_MODE_T instead of mode_t, otherwise GCC 4
-        creates crashing code when 'mode_t' is smaller than 'int'.  */
+         creates crashing code when 'mode_t' is smaller than 'int'.  */
       mode = va_arg (ap, PROMOTED_MODE_T);
 
       va_end (ap);