2011-06-25 16:26:44 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <errno.h>
|
2011-06-25 16:33:38 +00:00
|
|
|
#include <stdio.h>
|
2011-06-25 16:26:44 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2013-03-05 20:46:48 +00:00
|
|
|
|
2011-06-25 16:26:44 +00:00
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
apathmax(char **p, long *size)
|
|
|
|
{
|
|
|
|
errno = 0;
|
2013-03-05 20:46:48 +00:00
|
|
|
|
2014-11-19 19:59:37 +00:00
|
|
|
if ((*size = pathconf("/", _PC_PATH_MAX)) < 0) {
|
2014-11-13 18:54:28 +00:00
|
|
|
if (errno == 0) {
|
2011-06-25 16:26:44 +00:00
|
|
|
*size = BUFSIZ;
|
2013-03-05 20:46:48 +00:00
|
|
|
} else {
|
2011-06-25 16:26:44 +00:00
|
|
|
eprintf("pathconf:");
|
2013-03-05 20:46:48 +00:00
|
|
|
}
|
2011-06-25 16:26:44 +00:00
|
|
|
}
|
2014-11-16 10:07:26 +00:00
|
|
|
*p = emalloc(*size);
|
2011-06-25 16:26:44 +00:00
|
|
|
}
|