]> git.lyx.org Git - lyx.git/blob - src/broken_headers.h
Remove the inset and view member functions from PreviewedInset.
[lyx.git] / src / broken_headers.h
1 // -*- C++ -*-
2 /**
3  * \file broken_headers.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 // A few prototypes missing from Sun and SCO 3.2v4 header files.
13
14 #ifndef BROKEN_HEADERS_H
15 #define BROKEN_HEADERS_H
16
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20
21 #ifndef HAVE_MEMMOVE
22 void bcopy(unsigned char * b1, unsigned char * b2, int length);
23 #endif
24
25 int readlink(char const * path, char * buf, int bufsiz);
26 int strcasecmp(char const * s1, char const * s2);
27
28 #ifdef __cplusplus
29 }
30 #endif
31
32 #endif /* _BROKEN_HEADERS_H */