Remove definitions that are now in bionic libc

This commit is contained in:
Colin Cross 2010-01-14 12:47:12 -08:00
parent eab453c612
commit 1b1fd61295
2 changed files with 0 additions and 31 deletions

View file

@ -277,8 +277,6 @@ umaskcmd(int argc, char **argv)
return 0;
}
typedef unsigned long rlim_t;
#if 1
/*
* ulimit builtin

View file

@ -235,35 +235,6 @@ static void setstr(u_int8_t *, const char *, size_t);
static void usage(void);
#ifdef ANDROID
static void err(int val, const char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
char *fmt2;
asprintf(&fmt2, "%s\n", fmt);
vfprintf(stderr, fmt2, ap);
free(fmt2);
va_end(ap);
}
static void errx(int val, const char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
char *fmt2;
asprintf(&fmt2, "%s\n", fmt);
vfprintf(stderr, fmt2, ap);
free(fmt2);
va_end(ap);
}
static void warnx(const char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
char *fmt2;
asprintf(&fmt2, "%s\n", fmt);
vfprintf(stderr, fmt2, ap);
free(fmt2);
va_end(ap);
}
#define powerof2(x) ((((x) - 1) & (x)) == 0)
#define howmany(x, y) (((x) + ((y) - 1)) / (y))
#define MAX(x,y) ((x) > (y) ? (x) : (y))