133965Sjdp/* Default definitions for progress macros.
278828Sobrien   Copyright 1994 Free Software Foundation, Inc.
333965Sjdp
433965SjdpThis program is free software; you can redistribute it and/or modify
533965Sjdpit under the terms of the GNU General Public License as published by
633965Sjdpthe Free Software Foundation; either version 2 of the License, or
733965Sjdp(at your option) any later version.
833965Sjdp
933965SjdpThis program is distributed in the hope that it will be useful,
1033965Sjdpbut WITHOUT ANY WARRANTY; without even the implied warranty of
1133965SjdpMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1233965SjdpGNU General Public License for more details.
1333965Sjdp
1433965SjdpYou should have received a copy of the GNU General Public License
1533965Sjdpalong with this program; if not, write to the Free Software
16218822SdimFoundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
1733965Sjdp
1833965Sjdp/* The default definitions below are intended to be replaced by real
1933965Sjdp   definitions, if building the tools for an interactive programming
2033965Sjdp   environment.  */
2133965Sjdp
2233965Sjdp#ifndef _PROGRESS_H
2333965Sjdp#define _PROGRESS_H
2433965Sjdp
2533965Sjdp#ifndef START_PROGRESS
2633965Sjdp#define START_PROGRESS(STR,N)
2733965Sjdp#endif
2833965Sjdp
2933965Sjdp#ifndef PROGRESS
3033965Sjdp#define PROGRESS(X)
3133965Sjdp#endif
3233965Sjdp
3333965Sjdp#ifndef END_PROGRESS
3433965Sjdp#define END_PROGRESS(STR)
3533965Sjdp#endif
3633965Sjdp
3733965Sjdp#endif /* _PROGRESS_H */
38