Import a blunt version of <sys/types.h>

This commit is contained in:
Pierre Pronchery 2018-04-05 01:08:35 +02:00
parent 286d2aba01
commit 7411da160f
3 changed files with 17 additions and 0 deletions

View File

@ -1 +1,2 @@
subdirs=sys
dist=Makefile,stdbool.h,stddef.h,stdint.h,stdlib.h,string.h,unistd.h

1
include/sys/project.conf Normal file
View File

@ -0,0 +1 @@
dist=Makefile,types.h

15
include/sys/types.h Normal file
View File

@ -0,0 +1,15 @@
/* $Id$ */
/* Copyright (c) 2018 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS uKernel */
#ifndef UKERNEL_SYS_TYPES_H
# define UKERNEL_SYS_TYPES_H
/* types */
typedef unsigned long paddr_t;
typedef unsigned long vaddr_t;
#endif /* !UKERNEL_SYS_TYPES_H */