mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
132fe5e132
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@594 a592a061-630c-0410-9148-cb99ea01b6c8
32 lines
720 B
C++
32 lines
720 B
C++
/* -*- C++ -*- */
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2000 The LyX Team
|
|
*
|
|
* ======================================================
|
|
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 */
|