1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Small changes to make this build properly for OS4.

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14830 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-02-07 11:19:32 +00:00
parent a626336b7b
commit fcb8cfc0dc
2 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: stdio_fdhookentry.c,v 1.9 2005-02-04 15:03:11 obarthel Exp $
* $Id: stdio_fdhookentry.c,v 1.10 2005-02-07 11:19:31 obarthel Exp $
*
* :ts=4
*
@ -52,6 +52,12 @@
/****************************************************************************/
#if defined(__amigaos4__) && !defined(Flush)
#define Flush(fh) FFlush(fh)
#endif /* __amigaos4__ && !Flush */
/****************************************************************************/
/* This is used in place of ExamineFH() in order to work around a bug in
* dos.library V40 and below: a "NIL:" file handle will crash the
* ExamineFH() function.

View File

@ -1,5 +1,5 @@
/*
* $Id: unistd_wildcard_expand.c,v 1.6 2005-02-03 16:56:17 obarthel Exp $
* $Id: unistd_wildcard_expand.c,v 1.7 2005-02-07 11:19:32 obarthel Exp $
*
* :ts=4
*
@ -51,6 +51,12 @@
/****************************************************************************/
#if defined(__amigaos4__)
#define ap_Buf ap_Buffer
#endif /* __amigaos4__ */
/****************************************************************************/
UBYTE *
__allocate_quote_vector(int num_parameters)
{