mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Move fcntl.h functions into their own directory.
This commit is contained in:
parent
c69b5fc34d
commit
ed60c08c2c
5 changed files with 8 additions and 8 deletions
|
@ -180,7 +180,6 @@ $(CPUDIR)/fork.o \
|
|||
$(CPUDIR)/setjmp.o \
|
||||
$(CPUDIR)/signal.o \
|
||||
$(CPUDIR)/syscall.o \
|
||||
creat.o \
|
||||
dirent/fddir-sortix.o \
|
||||
dirent/scandir.o \
|
||||
dispmsg_issue.o \
|
||||
|
@ -206,7 +205,10 @@ fchown.o \
|
|||
fchrootat.o \
|
||||
fchroot.o \
|
||||
fcloseall.o \
|
||||
fcntl.o \
|
||||
fcntl/creat.o \
|
||||
fcntl/fcntl.o \
|
||||
fcntl/openat.o \
|
||||
fcntl/open.o \
|
||||
fdio.o \
|
||||
fgetpos.o \
|
||||
fileno.o \
|
||||
|
@ -283,8 +285,6 @@ netdb/sethostent.o \
|
|||
netdb/setnetent.o \
|
||||
netdb/setprotoent.o \
|
||||
netdb/setservent.o \
|
||||
openat.o \
|
||||
open.o \
|
||||
pathconf.o \
|
||||
pipe.o \
|
||||
poll.o \
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
creat.cpp
|
||||
fcntl/creat.cpp
|
||||
Create a file.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fcntl.cpp
|
||||
fcntl/fcntl.cpp
|
||||
Manipulates a file descriptor.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
open.cpp
|
||||
fcntl/open.cpp
|
||||
Open a file.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
openat.cpp
|
||||
fcntl/openat.cpp
|
||||
Open a file relative to directory.
|
||||
|
||||
*******************************************************************************/
|
Loading…
Add table
Reference in a new issue