view src/s/bsdos4.h @ 4173:03f6627a2e09

[xemacs-hg @ 2007-09-18 02:55:29 by james] Release XftFont resources. See xemacs-patches message <870180fe0709151610s3618b854y1f845489d4723f00@mail.gmail.com>.
author james
date Tue, 18 Sep 2007 02:55:29 +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