X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/460b9539a7c15580e41a71bbc0f47ae776238915..c0f52b2cc2b8ef94d9fdb21d0e13ef929f9e09b1:/lib/mem.h diff --git a/lib/mem.h b/lib/mem.h index ab1529f..46412eb 100644 --- a/lib/mem.h +++ b/lib/mem.h @@ -1,21 +1,22 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2006 Richard Kettlewell + * Copyright (C) 2004-2009 Richard Kettlewell * - * This program is free software; you can redistribute it and/or modify + * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA + * along with this program. If not, see . + */ +/** @file lib/mem.h + * @brief Memory management */ #ifndef MEM_H @@ -27,9 +28,8 @@ #include -void mem_init(int gc); -/* initialize memory management. Set GC to 1 if garbage collection is - * desired. */ +void mem_init(void); +/* initialize memory management. */ void *xmalloc(size_t); void *xrealloc(void *, size_t); @@ -42,6 +42,7 @@ void *xcalloc(size_t count, size_t size); void *xmalloc_noptr(size_t); void *xrealloc_noptr(void *, size_t); +void *xcalloc_noptr(size_t count, size_t size); char *xstrdup(const char *); char *xstrndup(const char *, size_t); /* As malloc/realloc/strdup, but @@ -63,4 +64,3 @@ c-basic-offset:2 comment-column:40 End: */ -/* arch-tag:333db053cab9e5ef91a151040d3256fb */