mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
0be0fcfd59
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7598 a592a061-630c-0410-9148-cb99ea01b6c8
33 lines
673 B
C++
33 lines
673 B
C++
// -*- 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ønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
// A few prototypes missing from Sun and SCO 3.2v4 header files.
|
|
|
|
#ifndef BROKEN_HEADERS_H
|
|
#define BROKEN_HEADERS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef HAVE_MEMMOVE
|
|
void bcopy(unsigned char * b1, unsigned char * b2, int length);
|
|
#endif
|
|
|
|
int readlink(char const * path, char * buf, int bufsiz);
|
|
int strcasecmp(char const * s1, char const * s2);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _BROKEN_HEADERS_H */
|