From 7411da160fdd6b1c3dc3ca23d285c05252d8c39a Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 5 Apr 2018 01:08:35 +0200 Subject: [PATCH] Import a blunt version of --- include/project.conf | 1 + include/sys/project.conf | 1 + include/sys/types.h | 15 +++++++++++++++ 3 files changed, 17 insertions(+) create mode 100644 include/sys/project.conf create mode 100644 include/sys/types.h diff --git a/include/project.conf b/include/project.conf index 1656619..2500ebc 100644 --- a/include/project.conf +++ b/include/project.conf @@ -1 +1,2 @@ +subdirs=sys dist=Makefile,stdbool.h,stddef.h,stdint.h,stdlib.h,string.h,unistd.h diff --git a/include/sys/project.conf b/include/sys/project.conf new file mode 100644 index 0000000..9ddaf83 --- /dev/null +++ b/include/sys/project.conf @@ -0,0 +1 @@ +dist=Makefile,types.h diff --git a/include/sys/types.h b/include/sys/types.h new file mode 100644 index 0000000..34eb792 --- /dev/null +++ b/include/sys/types.h @@ -0,0 +1,15 @@ +/* $Id$ */ +/* Copyright (c) 2018 Pierre Pronchery */ +/* 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 */