diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 1995-05-29 13:46:40 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 1995-05-29 13:46:40 +0000 |
commit | 0d98f1227110082e9e507ca236458f6c363e25b6 (patch) | |
tree | 297f74782436a0f973b6b89d60c10f399af9a135 /games/jetpack/files/patch-ae | |
parent | Remove comment about not being able to undefine a variable, as we *can* (diff) |
This commit was manufactured by cvs2svn to create tag 'RELENG_2_0_5_ALPHA'.release/2.0.5a
Diffstat (limited to 'games/jetpack/files/patch-ae')
-rw-r--r-- | games/jetpack/files/patch-ae | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/games/jetpack/files/patch-ae b/games/jetpack/files/patch-ae deleted file mode 100644 index 9d8c69d61a53..000000000000 --- a/games/jetpack/files/patch-ae +++ /dev/null @@ -1,26 +0,0 @@ -*** main.c.orig Mon Apr 6 12:59:32 1992 ---- main.c Thu Sep 22 13:07:12 1994 -*************** -*** 1,5 **** ---- 1,9 ---- - /* main.c : main loop of jetpack - */ -+ #include <sys/types.h> -+ #include <sys/time.h> -+ #include <sys/resource.h> -+ - - #include "copyright.h" - #include "defs.h" -*************** -*** 18,23 **** ---- 22,30 ---- - int seed; - char lev[20]; - register unsigned long timer; -+ struct rlimit l = {0, 0}; -+ -+ setrlimit(RLIMIT_CORE, &l); - - /* randomize the random number generator by seeding it with the time - in seconds |