This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMITTED PATCH] Fix shm-directory.h #include.


Always use <> for anything that even might maybe ever be in sysdeps!
The fool that wrote this file should have known that.


2015-01-09  Roland McGrath  <roland@hack.frob.com>

	* sysdeps/posix/shm-directory.c: Use <> rather than ""
	for #include of <shm-directory.h>.

--- a/sysdeps/posix/shm-directory.c
+++ b/sysdeps/posix/shm-directory.c
@@ -16,7 +16,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
-#include "shm-directory.h"
+#include <shm-directory.h>
 #include <unistd.h>
 
 #if _POSIX_MAPPED_FILES


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]