This is a-cio.c in view mode; [Download] [Up]
/****************************************************************************/ /* */ /* GNAT COMPILER COMPONENTS */ /* */ /* A - C I O */ /* */ /* C Implementation File */ /* */ /* $Revision: 1.1 $ */ /* */ /* Copyright (c) 1992,1993,1994 NYU, All Rights Reserved */ /* */ /* GNAT is free software; you can redistribute it and/or modify it under */ /* terms of the GNU General Public License as published by the Free Soft- */ /* ware Foundation; either version 2, or (at your option) any later ver- */ /* sion. GNAT is distributed in the hope that it will be useful, but WITH- */ /* OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY */ /* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License */ /* for more details. You should have received a copy of the GNU General */ /* Public License distributed with GNAT; see file COPYING. If not, write */ /* to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* */ /****************************************************************************/ #include <stdio.h> int get_int () { int x; scanf (" %d", &x); return x; } put_int (int x) { printf ("%d", x); } #if 0 ---------------------- -- REVISION HISTORY -- ---------------------- ---------------------------- revision 1.1 date: Thu Feb 3 21:34:29 1994; author: porter Initial revision ---------------------------- ** New changes after this line and before endif. ** #endif
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.