File: rtl.h

package info (click to toggle)
rtlinux 2.0rel-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 2,068 kB
  • ctags: 1,178
  • sloc: ansic: 7,169; makefile: 779; sh: 89
file content (24 lines) | stat: -rw-r--r-- 390 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * RT-Linux emulation
 *
 *  Copyright (C) 1999 FSM Labs (http://www.fsmlabs.com/)
 *  Written by Michael Barabanov <baraban@fsmlabs.com>
 */

#ifndef __RTL_RTL_H__
#define __RTL_RTL_H__

#ifdef MODULE
/* we're compiling for the native RTL */

#include <rtl_conf.h>
#include <linux/module.h>

#else
/* user-mode emulation of the RTL environment */

#endif

#include <rtl_core.h>

#endif