view src/s/bsdos4.h @ 2622:c8a9be2d4728

[xemacs-hg @ 2005-02-28 23:36:30 by aidan] Add details about losing data to the unicode-to-char docstring. The Mule character encoding model means that extant Unicode coding systems will lose data. Make this clear in the docstring of unicode-to-char, give sample code to implement support for some desired code points should our distributors want to do that.
author aidan
date Mon, 28 Feb 2005 23:36:32 +0000
parents 00e9371a84f3
children
line wrap: on
line source

#include "bsdos3.h"

/* BSD/OS seems to have switched to ELF format for executables. */
#ifdef __ELF__

#undef ORDINARY_LINK
#define ORDINARY_LINK 1
#define UNEXEC unexelf.o

#endif /* ELF */

/* The declaration for openpty is missing.  Where is libutil.h? */
#ifndef NOT_C_CODE
struct termios;
struct winsize;
int openpty (int *, int *, char *, struct termios *, struct winsize *);
#endif