1997-07-02 11:45:09 -07:00
|
|
|
/*
|
|
|
|
** lualoc.h
|
|
|
|
** TecCGraf - PUC-Rio
|
1997-07-02 11:50:18 -07:00
|
|
|
** $Id: lualoc.h,v 1.1 1997/07/02 18:45:09 roberto Exp roberto $
|
1997-07-02 11:45:09 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lualoc_h
|
|
|
|
#define lualoc_h
|
|
|
|
|
1997-07-02 11:50:18 -07:00
|
|
|
|
1997-07-02 11:45:09 -07:00
|
|
|
#ifndef OLD_ANSI
|
|
|
|
#include <locale.h>
|
|
|
|
#else
|
1997-07-02 11:50:18 -07:00
|
|
|
|
1997-07-02 11:45:09 -07:00
|
|
|
#define strcoll(a,b) strcmp(a,b)
|
|
|
|
#define setlocale(a,b) 0
|
|
|
|
#define LC_ALL 0
|
|
|
|
#define LC_COLLATE 0
|
|
|
|
#define LC_CTYPE 0
|
|
|
|
#define LC_MONETARY 0
|
|
|
|
#define LC_NUMERIC 0
|
|
|
|
#define LC_TIME 0
|
1997-07-02 11:50:18 -07:00
|
|
|
|
|
|
|
#define strerror(e) "O.S. is unable to define the error"
|
|
|
|
|
1997-07-02 11:45:09 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|