From aa4ddab13c4119ec07e0b34baacb44a9e3c2a74c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 1 May 2002 10:36:30 +0000 Subject: [PATCH] kernel.h wrapper file git-svn-id: svn://svn.rockbox.org/rockbox/trunk@365 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/x11/kernel.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 uisimulator/x11/kernel.h diff --git a/uisimulator/x11/kernel.h b/uisimulator/x11/kernel.h new file mode 100644 index 0000000000..32c7d9beb9 --- /dev/null +++ b/uisimulator/x11/kernel.h @@ -0,0 +1,24 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2002 by Daniel Stenberg + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + +#include "../../firmware/kernel.h" + +#define sleep(x) x11_sleep(x) + +void x11_sleep(int);