ignore failure to define MAP_FILE

This commit is contained in:
tg
2008-03-27 17:59:28 +00:00
parent dbc159a491
commit 351104715e
2 changed files with 11 additions and 3 deletions

View File

@@ -3,7 +3,15 @@
#include "sh.h"
__RCSID("$MirOS: src/bin/mksh/histrap.c,v 1.58 2008/03/05 16:54:21 tg Exp $");
__RCSID("$MirOS: src/bin/mksh/histrap.c,v 1.59 2008/03/27 17:59:28 tg Exp $");
/*-
* MirOS: This is the default mapping type, and need not be specified.
* IRIX doesnt have this constant.
*/
#ifndef MAP_FILE
#define MAP_FILE 0
#endif
Trap sigtraps[NSIG + 1];
static struct sigaction Sigact_ign;