/* $Id: stack.h,v 1.1.1.1 1995/07/11 22:16:44 alex Exp $ * Stack library for HP48. * Copyright (C) 1995 Eddie C. Dost * * This file is part of the HP48 C Library. * * The HP48 C Library is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * The HP48 C Library is distributed in the hope that it will be useful, * but WITHOUT 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 * along with hp48xgcc; see the file COPYING. If not, write to * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _HP48_STACK_H #define _HP48_STACK_H #include /* * Pop real number from stack. */ float pop_real (void); void push (const hp_object *); #endif /* !_HP48_STACK_H */