mirror of
https://github.com/vattam/BSDGames.git
synced 2025-12-20 19:04:49 +00:00
git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5086 a4a2c43b-8ac3-0310-8836-e0e880c912e2
16 lines
239 B
C
16 lines
239 B
C
/* ttydefaults.h - bsd-games wrapper for <sys/ttydefaults.h> */
|
|
|
|
#include <features.h>
|
|
|
|
#ifdef __GLIBC__
|
|
#include_next <sys/ttydefaults.h>
|
|
#endif
|
|
|
|
#ifndef CTRL
|
|
#define CTRL(x) ((x) & 037)
|
|
#endif
|
|
|
|
#ifndef OXTABS
|
|
#define OXTABS XTABS
|
|
#endif
|