sbase/libutil/apathmax.c

23 lines
373 B
C
Raw Normal View History

2011-06-25 16:26:44 +00:00
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <limits.h>
2011-06-25 16:26:44 +00:00
#include <unistd.h>
2011-06-25 16:26:44 +00:00
#include "../util.h"
void
apathmax(char **p, size_t *size)
2011-06-25 16:26:44 +00:00
{
errno = 0;
2014-11-19 19:59:37 +00:00
if ((*size = pathconf("/", _PC_PATH_MAX)) < 0) {
if (errno == 0) {
*size = PATH_MAX;
} else {
2011-06-25 16:26:44 +00:00
eprintf("pathconf:");
}
} else {
(*size)++;
2011-06-25 16:26:44 +00:00
}
*p = emalloc(*size);
2011-06-25 16:26:44 +00:00
}