mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
27de1486ca
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@140 a592a061-630c-0410-9148-cb99ea01b6c8
31 lines
719 B
C++
31 lines
719 B
C++
/* -*- C++ -*- */
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright (C) 1995 Matthias Ettrich
|
|
* Copyright (C) 1995-1998 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 */
|