diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-12-21 19:49:43 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-12-21 19:49:43 +0000 |
commit | 2196ce4482a339d93003bf9888d296d47e5f31b3 (patch) | |
tree | e08452490e78e917609cbeea345c71ae4edff7b2 /lang/atlast/files/patch-atlast.c | |
parent | Update to 0.0.23. (diff) |
- Update to 1.1
- Remove two patches
PR: 90723
Submitted by: Frank Laszlo <laszlof@vonostingroup.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=151785
Diffstat (limited to '')
-rw-r--r-- | lang/atlast/files/patch-atlast.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/lang/atlast/files/patch-atlast.c b/lang/atlast/files/patch-atlast.c deleted file mode 100644 index 99263a80b8b3..000000000000 --- a/lang/atlast/files/patch-atlast.c +++ /dev/null @@ -1,24 +0,0 @@ ---- atlast.c.orig Fri May 10 23:18:47 2002 -+++ atlast.c Fri May 10 23:36:28 2002 -@@ -3243,14 +3243,17 @@ - { static struct { - char *sfn; - FILE *sfd; -- } stdfiles[] = { -- {"STDIN", stdin}, -- {"STDOUT", stdout}, -- {"STDERR", stderr} -+ } stdfiles[] = { -+ {"STDIN", NULL}, -+ {"STDOUT", NULL}, -+ {"STDERR", NULL} - }; - int i; - dictword *dw; - -+ stdfiles[0].sfd = stdin; -+ stdfiles[1].sfd = stdout; -+ stdfiles[2].sfd = stderr; - for (i = 0; i < ELEMENTS(stdfiles); i++) { - if ((dw = atl_vardef(stdfiles[i].sfn, - 2 * sizeof(stackitem))) != NULL) { |