mirror of
https://github.com/vattam/BSDGames.git
synced 2025-12-20 19:04:49 +00:00
Initial revision
git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5086 a4a2c43b-8ac3-0310-8836-e0e880c912e2
This commit is contained in:
11
include/sys/cdefs.h
Normal file
11
include/sys/cdefs.h
Normal file
@@ -0,0 +1,11 @@
|
||||
/* cdefs.h - bsd-games wrapper for <sys/cdefs.h> */
|
||||
|
||||
#include_next <sys/cdefs.h>
|
||||
|
||||
#ifndef __RCSID
|
||||
#define __RCSID(arg) static const char rcsid[] __attribute__((unused)) = arg
|
||||
#endif
|
||||
|
||||
#ifndef __COPYRIGHT
|
||||
#define __COPYRIGHT(arg) static const char copyright[] __attribute__((unused)) = arg
|
||||
#endif
|
||||
15
include/sys/ttydefaults.h
Normal file
15
include/sys/ttydefaults.h
Normal file
@@ -0,0 +1,15 @@
|
||||
/* 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
|
||||
Reference in New Issue
Block a user