]> sjero.net Git - wget/blobdiff - src/progress.h
[svn] Guard against header files getting included twice.
[wget] / src / progress.h
index 50cd211627aefec351248249161637ee94c59522..5566cb9aa9fa7675487339a31792c5587dd0830d 100644 (file)
@@ -17,11 +17,16 @@ You should have received a copy of the GNU General Public License
 along with Wget; if not, write to the Free Software
 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
+#ifndef PROGRESS_H
+#define PROGRESS_H
+
 int valid_progress_implementation_p PARAMS ((const char *));
 void set_progress_implementation PARAMS ((const char *));
 
 void *progress_create PARAMS ((long, long));
-void progress_update PARAMS ((void *, long));
-void progress_finish PARAMS ((void *));
+void progress_update PARAMS ((void *, long, long));
+void progress_finish PARAMS ((void *, long));
 
 RETSIGTYPE progress_handle_sigwinch PARAMS ((int));
+
+#endif /* PROGRESS_H */