2003-08-23 00:17:00 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file broken_headers.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// A few prototypes missing from Sun and SCO 3.2v4 header files.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
#ifndef BROKEN_HEADERS_H
|
|
|
|
|
#define BROKEN_HEADERS_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef HAVE_MEMMOVE
|
1999-11-15 12:01:38 +00:00
|
|
|
|
void bcopy(unsigned char * b1, unsigned char * b2, int length);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
1999-11-15 12:01:38 +00:00
|
|
|
|
int readlink(char const * path, char * buf, int bufsiz);
|
|
|
|
|
int strcasecmp(char const * s1, char const * s2);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* _BROKEN_HEADERS_H */
|