apathmax fix

This commit is contained in:
Connor Lane Smith 2011-06-25 17:33:38 +01:00
parent 33de3bffdb
commit 9658c7cfa7
2 changed files with 2 additions and 1 deletions

2
util.h
View File

@ -3,8 +3,8 @@
#define UTF8_POINT(c) (((c) & 0xc0) != 0x80)
char *agetcwd(void);
void enmasse(int, char **, int (*)(const char *, const char *));
void apathmax(char **, long *);
void enmasse(int, char **, int (*)(const char *, const char *));
void eprintf(const char *, ...);
void enprintf(int, const char *, ...);
long estrtol(const char *, int);

View File

@ -1,6 +1,7 @@
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "../util.h"