diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-08-24 01:43:47 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-08-24 01:43:47 +0000 |
commit | acd1bd01055598144b8bc14750f0f6082b65b9b6 (patch) | |
tree | ac6c79a04d7558ab1f90788ccccf4a1f43b4229d /lang/pbasic/files | |
parent | cfc59907359f040294d24b625b1f1b4a90729d09 (diff) |
Phil Cockroft's basic interpreter. Thanks, Julian!
Submitted by: jhs
Notes
Notes:
svn path=/head/; revision=2103
Diffstat (limited to 'lang/pbasic/files')
-rw-r--r-- | lang/pbasic/files/patch-aa | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lang/pbasic/files/patch-aa b/lang/pbasic/files/patch-aa new file mode 100644 index 000000000000..d350cd45b6cf --- /dev/null +++ b/lang/pbasic/files/patch-aa @@ -0,0 +1,25 @@ +This patch by Julian Stacey <jhs@FreeBSD.Org> + +*** bas6.c Fri Aug 11 12:17:21 1995 +--- bas6.c Sun Aug 13 15:53:25 1995 +*************** +*** 162,168 **** +--- 162,179 ---- + * written at the same time + */ + ++ #ifndef __FreeBSD__ + long lseek(); ++ /* To phil C phil@gmrs.isar.de ++ From Julian S jhs@freebsd.org ++ Date 950813 ++ FreeBSD current has ++ off_t lseek __P((int, off_t, int)); ++ & reports ++ /usr/include/unistd.h:82: previous declaration of `lseek' ++ however you might want a more general ifndef BSD or similar perhaps ? ++ */ ++ #endif + + int + bfopen() |