added CHUNK_INITIALIZER

This commit is contained in:
Jan Hutter 2005-11-23 07:16:55 +00:00
parent 1484eedb15
commit da93259175
2 changed files with 3 additions and 0 deletions

View File

@ -38,3 +38,4 @@ mapping_t status_m[] = {
{MAPPING_END, NULL}
};
chunk_t CHUNK_INITIALIZER = {NULL,0};

View File

@ -61,6 +61,8 @@ struct chunk_s {
size_t len;
};
extern chunk_t CHUNK_INITIALIZER;
/**
* General purpose boolean type
*/