122347Spst/* Default definitions for progress macros.
222347Spst   Copyright 1994 Free Software Foundation, Inc.
329967Sache
492914SmarkmThis program is free software; you can redistribute it and/or modify
522347Spstit under the terms of the GNU General Public License as published by
622347Spstthe Free Software Foundation; either version 2 of the License, or
722347Spst(at your option) any later version.
822347Spst
922347SpstThis program is distributed in the hope that it will be useful,
1022347Spstbut WITHOUT ANY WARRANTY; without even the implied warranty of
1122347SpstMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1222347SpstGNU General Public License for more details.
1322347Spst
1422347SpstYou should have received a copy of the GNU General Public License
1522347Spstalong with this program; if not, write to the Free Software
1622347SpstFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
1722347Spst
1822347Spst/* The default definitions below are intended to be replaced by real
1922347Spst   definitions, if building the tools for an interactive programming
2022347Spst   environment.  */
2122347Spst
2259121Skris#ifndef _PROGRESS_H
2322347Spst#define _PROGRESS_H
2422347Spst
2522347Spst#ifndef START_PROGRESS
2622347Spst#define START_PROGRESS(STR,N)
2722347Spst#endif
2822347Spst
2922347Spst#ifndef PROGRESS
3022347Spst#define PROGRESS(X)
3122347Spst#endif
3222347Spst
3322347Spst#ifndef END_PROGRESS
3422347Spst#define END_PROGRESS(STR)
3522347Spst#endif
3622347Spst
3722347Spst#endif /* _PROGRESS_H */
3822347Spst