xref: /openbsd-src/gnu/usr.bin/binutils/include/progress.h (revision 5f210c2af8ad7a823d98e333e3a6e3d7999783f5)
12159047fSniklas /* Default definitions for progress macros.
2*5f210c2aSfgsch    Copyright 1994 Free Software Foundation, Inc.
32159047fSniklas 
42159047fSniklas This program is free software; you can redistribute it and/or modify
52159047fSniklas it under the terms of the GNU General Public License as published by
62159047fSniklas the Free Software Foundation; either version 2 of the License, or
72159047fSniklas (at your option) any later version.
82159047fSniklas 
92159047fSniklas This program is distributed in the hope that it will be useful,
102159047fSniklas but WITHOUT ANY WARRANTY; without even the implied warranty of
112159047fSniklas MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
122159047fSniklas GNU General Public License for more details.
132159047fSniklas 
142159047fSniklas You should have received a copy of the GNU General Public License
152159047fSniklas along with this program; if not, write to the Free Software
162159047fSniklas Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
172159047fSniklas 
182159047fSniklas /* The default definitions below are intended to be replaced by real
192159047fSniklas    definitions, if building the tools for an interactive programming
202159047fSniklas    environment.  */
212159047fSniklas 
222159047fSniklas #ifndef _PROGRESS_H
232159047fSniklas #define _PROGRESS_H
242159047fSniklas 
252159047fSniklas #ifndef START_PROGRESS
262159047fSniklas #define START_PROGRESS(STR,N)
272159047fSniklas #endif
282159047fSniklas 
292159047fSniklas #ifndef PROGRESS
302159047fSniklas #define PROGRESS(X)
312159047fSniklas #endif
322159047fSniklas 
332159047fSniklas #ifndef END_PROGRESS
342159047fSniklas #define END_PROGRESS(STR)
352159047fSniklas #endif
362159047fSniklas 
372159047fSniklas #endif /* _PROGRESS_H */
38