mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
fee35a50a7
Requested by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
39 lines
859 B
Plaintext
39 lines
859 B
Plaintext
*** gs-view.c.orig Sat Jan 13 18:33:59 1996
|
|
--- gs-view.c Sat Jan 13 18:34:19 1996
|
|
***************
|
|
*** 126,132 ****
|
|
|
|
#ifdef PS_LITERAL
|
|
fflush(temp_ps_file);
|
|
! lseek(fileno(temp_ps_file), 0L, SEEK_SET);
|
|
#endif /* PS_LITERAL */
|
|
|
|
{
|
|
--- 126,132 ----
|
|
|
|
#ifdef PS_LITERAL
|
|
fflush(temp_ps_file);
|
|
! lseek(fileno(temp_ps_file), (off_t)0, SEEK_SET);
|
|
#endif /* PS_LITERAL */
|
|
|
|
{
|
|
*** font_open.c.orig Sat Jan 13 18:29:22 1996
|
|
--- font_open.c Sat Jan 13 18:39:14 1996
|
|
***************
|
|
*** 137,143 ****
|
|
#else
|
|
#if NeedFunctionPrototypes
|
|
#if !defined(__386BSD__) && !defined(SVR4)
|
|
! extern char *getcwd (char *, int);
|
|
#endif
|
|
#else
|
|
extern char *getcwd ();
|
|
--- 137,143 ----
|
|
#else
|
|
#if NeedFunctionPrototypes
|
|
#if !defined(__386BSD__) && !defined(SVR4)
|
|
! extern char *getcwd (char *, size_t);
|
|
#endif
|
|
#else
|
|
extern char *getcwd ();
|