-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HACK: cp src/iostream.h back so IO package compiles
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/**************************************************************************** | ||
** | ||
*W iostream.h GAP source Steve Linton | ||
** | ||
** | ||
*Y Copyright (C) 1996, Lehrstuhl D für Mathematik, RWTH Aachen, Germany | ||
*Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland | ||
*Y Copyright (C) 2002 The GAP Group | ||
** | ||
** This file declares the functions for the floating point package | ||
*/ | ||
|
||
#ifndef GAP_IOSTREAM_H | ||
#define GAP_IOSTREAM_H | ||
|
||
#include <src/system.h> | ||
|
||
// Provide a feature macro to let libraries check if GAP supports | ||
// CheckChildStatusChanged. | ||
#define GAP_HasCheckChildStatusChanged | ||
|
||
int CheckChildStatusChanged(int childPID, int status); | ||
|
||
/*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * * | ||
*/ | ||
|
||
/**************************************************************************** | ||
** | ||
*F InitInfoFloat() . . . . . . . . . . . . . . . . . table of init functions | ||
*/ | ||
StructInitInfo * InitInfoIOStream ( void ); | ||
|
||
|
||
#endif // GAP_IOSTREAM_H |