175fd0b74Schristos /* Default definitions for progress macros. 2*e992f068Schristos Copyright (C) 1994-2022 Free Software Foundation, Inc. 375fd0b74Schristos 475fd0b74Schristos This program is free software; you can redistribute it and/or modify 575fd0b74Schristos it under the terms of the GNU General Public License as published by 675fd0b74Schristos the Free Software Foundation; either version 3 of the License, or 775fd0b74Schristos (at your option) any later version. 875fd0b74Schristos 975fd0b74Schristos This program is distributed in the hope that it will be useful, 1075fd0b74Schristos but WITHOUT ANY WARRANTY; without even the implied warranty of 1175fd0b74Schristos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1275fd0b74Schristos GNU General Public License for more details. 1375fd0b74Schristos 1475fd0b74Schristos You should have received a copy of the GNU General Public License 1575fd0b74Schristos along with this program; if not, write to the Free Software 1675fd0b74Schristos Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, 1775fd0b74Schristos MA 02110-1301, USA. */ 1875fd0b74Schristos 1975fd0b74Schristos /* The default definitions below are intended to be replaced by real 2075fd0b74Schristos definitions, if building the tools for an interactive programming 2175fd0b74Schristos environment. */ 2275fd0b74Schristos 2375fd0b74Schristos #ifndef _PROGRESS_H 2475fd0b74Schristos #define _PROGRESS_H 2575fd0b74Schristos 2675fd0b74Schristos #ifndef START_PROGRESS 2775fd0b74Schristos #define START_PROGRESS(STR,N) 2875fd0b74Schristos #endif 2975fd0b74Schristos 3075fd0b74Schristos #ifndef PROGRESS 3175fd0b74Schristos #define PROGRESS(X) 3275fd0b74Schristos #endif 3375fd0b74Schristos 3475fd0b74Schristos #ifndef END_PROGRESS 3575fd0b74Schristos #define END_PROGRESS(STR) 3675fd0b74Schristos #endif 3775fd0b74Schristos 3875fd0b74Schristos #endif /* _PROGRESS_H */ 39