source: soft/giet_vm/applications/rosenfeld/nrc2/include/nrkernel.h @ 772

Last change on this file since 772 was 772, checked in by meunier, 8 years ago
  • Ajout de l'application rosenfeld
  • Changement du nom du flag O_CREATE en O_CREAT
File size: 596 bytes
Line 
1// ------------------
2// --- nrkernel.c ---
3// ------------------
4
5/*
6 * Copyright (c) 2000-2014, Lionel Lacassagne, All rights reserved
7 * Univ Paris Sud XI, CNRS
8*/
9
10#ifndef __NRKERNEL_H__
11#define __NRKERNEL_H__
12
13#ifdef __cplusplus
14#pragma message ("C++")
15extern "C" {
16#endif
17   
18#ifdef VERBOSE_PRAGMA
19//#pragma message ("- *** include nrkernel.h ***")
20#endif
21
22void nrerror(char error_text[]);
23void nrerror0(char error_text[]);   
24void nrerror1(char *format, ...);
25   
26void Error  (char *format, ...);
27void Warning(char *format, ...);
28
29
30#ifdef __cplusplus
31}
32#endif
33
34#endif // __NRKERNEL_H__
Note: See TracBrowser for help on using the repository browser.