mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-28 16:00:22 +02:00
* gdbint.c, strports.c: #include <unistd.h>. (SEEK_SET is defined
there on sunos4.1.4.)
This commit is contained in:
parent
a18bcd0e5f
commit
681b900590
2 changed files with 12 additions and 2 deletions
|
@ -43,8 +43,13 @@
|
|||
* The author can be reached at djurfeldt@nada.kth.se
|
||||
* Mikael Djurfeldt, SANS/NADA KTH, 10044 STOCKHOLM, SWEDEN */
|
||||
|
||||
#include <stdio.h>
|
||||
#include "_scm.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include "tag.h"
|
||||
#include "strports.h"
|
||||
#include "read.h"
|
||||
|
|
|
@ -40,8 +40,13 @@
|
|||
* If you do not wish that, delete this exception notice. */
|
||||
|
||||
|
||||
#include <stdio.h>
|
||||
#include "_scm.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include "unif.h"
|
||||
#include "eval.h"
|
||||
#include "read.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue