This commit is contained in:
Connor Lane Smith
2011-06-25 17:26:44 +01:00
parent 572f5e926c
commit 33de3bffdb
5 changed files with 28 additions and 10 deletions

24
util/apathmax.c Normal file
View File

@@ -0,0 +1,24 @@
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#include <unistd.h>
#include "../util.h"
void
apathmax(char **p, long *size)
{
#ifdef PATH_MAX
*size = PATH_MAX;
#else
errno = 0;
if((*size = pathconf(".", _PC_PATH_MAX)) == -1) {
if(errno == 0)
*size = BUFSIZ;
else
eprintf("pathconf:");
}
#endif
if(!(*p = malloc(*size)))
eprintf("malloc:");
}