diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-12-04 17:06:14 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-12-04 17:06:14 +0000 |
commit | 0a20bdd5b4ea957e108cbf43725349e2766bd1d1 (patch) | |
tree | c684ee0af28e0059fd7c7974775f10af5b4dc644 /src/utils.h | |
parent | 02d7474a0952015971439fce2f24ee66ef0217a3 (diff) |
Removed the "bool_t" type since it conflicts with the newer C standards.
The type was just replaced by "unsigned int" types.
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/utils.h b/src/utils.h index e208a6f..0bbd198 100644 --- a/src/utils.h +++ b/src/utils.h @@ -1,4 +1,4 @@ -/* $Id: utils.h,v 1.21 2002-11-21 21:52:03 rjkaes Exp $ +/* $Id: utils.h,v 1.22 2002-12-04 17:06:14 rjkaes Exp $ * * See 'utils.h' for a detailed description. * @@ -27,9 +27,10 @@ struct conn_s; extern int send_http_message(struct conn_s *connptr, int http_code, const char *error_title, const char *message); extern int send_http_error_message(struct conn_s *connptr); -extern int indicate_http_error(struct conn_s* connptr, int number, const char *string); +extern int indicate_http_error(struct conn_s* connptr, int number, + const char *string); extern int pidfile_create(const char *path); -extern int create_file_safely(const char *filename, bool_t truncate_file); +extern int create_file_safely(const char *filename, unsigned int truncate_file); #endif |