From dc62790deec183697489d5fddea03c82f725e7fd Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 29 Sep 2012 17:40:42 -0400 Subject: [PATCH] move accept4, dup3, and pipe2 to non-linux-specific locations these interfaces have been adopted by the Austin Group for inclusion in the next version of POSIX. --- src/{linux => network}/accept4.c | 0 src/{linux => unistd}/dup3.c | 0 src/{linux => unistd}/pipe2.c | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename src/{linux => network}/accept4.c (100%) rename src/{linux => unistd}/dup3.c (100%) rename src/{linux => unistd}/pipe2.c (100%) diff --git a/src/linux/accept4.c b/src/network/accept4.c similarity index 100% rename from src/linux/accept4.c rename to src/network/accept4.c diff --git a/src/linux/dup3.c b/src/unistd/dup3.c similarity index 100% rename from src/linux/dup3.c rename to src/unistd/dup3.c diff --git a/src/linux/pipe2.c b/src/unistd/pipe2.c similarity index 100% rename from src/linux/pipe2.c rename to src/unistd/pipe2.c -- 2.20.1