=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/libmandoc.h,v retrieving revision 1.1 retrieving revision 1.2 diff -c -r1.1 -r1.2 *** src/usr.bin/mandoc/libmandoc.h 2009/07/08 00:04:10 1.1 --- src/usr.bin/mandoc/libmandoc.h 2009/12/22 23:58:00 1.2 *************** *** 1,4 **** ! /* $Id: libmandoc.h,v 1.1 2009/07/08 00:04:10 schwarze Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: libmandoc.h,v 1.2 2009/12/22 23:58:00 schwarze Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons * *************** *** 20,25 **** --- 20,29 ---- __BEGIN_DECLS int mandoc_special(const char *); + void *mandoc_calloc(size_t, size_t); + char *mandoc_strdup(const char *); + void *mandoc_malloc(size_t); + void *mandoc_realloc(void *, size_t); __END_DECLS