X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fpool.h;h=fc24b2f9e6ff0ae38221a2ac7f9d3bba60aa8fbf;hb=b5c82cc9aabe7e641011130240ae1b2e84348e23;hp=bc60e3a7a297928faff5dd0330e2aeafcd15aa46;hpb=c97f6581b874c6057dbd4d581552774a3ed56ac5;p=pspp-builds.git diff --git a/src/libpspp/pool.h b/src/libpspp/pool.h index bc60e3a7..fc24b2f9 100644 --- a/src/libpspp/pool.h +++ b/src/libpspp/pool.h @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2000, 2006 Free Software Foundation, Inc. - 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 (at your option) any later version. + 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 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., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #if !pool_h #define pool_h 1 @@ -33,7 +31,7 @@ /* Records the state of a pool for later restoration. */ -struct pool_mark +struct pool_mark { /* Current block and offset into it. */ struct pool_block *block; @@ -64,7 +62,8 @@ void *pool_clone (struct pool *, const void *, size_t) MALLOC_LIKE; void *pool_alloc_unaligned (struct pool *, size_t) MALLOC_LIKE; void *pool_clone_unaligned (struct pool *, const void *, size_t) MALLOC_LIKE; char *pool_strdup (struct pool *, const char *) MALLOC_LIKE; -char *pool_vasprintf (struct pool *, const char *, va_list) +char *pool_strdup0 (struct pool *, const char *, size_t) MALLOC_LIKE; +char *pool_vasprintf (struct pool *, const char *, va_list) MALLOC_LIKE PRINTF_FORMAT (2, 0); char *pool_asprintf (struct pool *, const char *, ...) MALLOC_LIKE PRINTF_FORMAT (2, 3);