Skip to content
Snippets Groups Projects
Commit 4f345d56 authored by Mike Frysinger's avatar Mike Frysinger
Browse files

sandbox: add ifdef protection to os.h


Acked-by: default avatarSimon Glass <sjg@chromium.org>
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent 3bdf56b7
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,9 @@
* This provides access to useful OS routines from the sandbox architecture
*/
#ifndef __OS_H__
#define __OS_H__
/**
* Access to the OS read() system call
*
......@@ -98,3 +101,5 @@ void os_usleep(unsigned long usec);
* \return A monotonic increasing time scaled in nano seconds
*/
u64 os_get_nsec(void);
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment