2011-06-25 12:26:44 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <errno.h>
|
2011-06-25 12:33:38 -04:00
|
|
|
#include <stdio.h>
|
2011-06-25 12:26:44 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2013-03-05 15:46:48 -05:00
|
|
|
|
2011-06-25 12:26:44 -04:00
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
apathmax(char **p, long *size)
|
|
|
|
{
|
|
|
|
errno = 0;
|
2013-03-05 15:46:48 -05:00
|
|
|
|
2013-03-10 16:48:17 -04:00
|
|
|
if((*size = pathconf("/", _PC_PATH_MAX)) == -1) {
|
2013-03-05 15:46:48 -05:00
|
|
|
if(errno == 0) {
|
2011-06-25 12:26:44 -04:00
|
|
|
*size = BUFSIZ;
|
2013-03-05 15:46:48 -05:00
|
|
|
} else {
|
2011-06-25 12:26:44 -04:00
|
|
|
eprintf("pathconf:");
|
2013-03-05 15:46:48 -05:00
|
|
|
}
|
2011-06-25 12:26:44 -04:00
|
|
|
}
|
2013-03-05 15:46:48 -05:00
|
|
|
|
2011-06-25 12:26:44 -04:00
|
|
|
if(!(*p = malloc(*size)))
|
|
|
|
eprintf("malloc:");
|
|
|
|
}
|