The build took 00h 01m 11s and was NOT successful.
The program in this build is written in the following languages, according to sloccount:
SLOC | Language |
---|---|
3,611 |
ansic |
156 |
sh |
70 |
makefile |
3,837 |
total |
The process tree of the build process is here.
Several sub-process invocations were improper; see the process tree for details. Summary:
To avoid scrolling, you may jump to the last line of the
invocation of makepkg
that was used to build this
package.
Removed vanilla repositories from pacman.conf and added:
Copied permanent toolchain into container-local sysroot
/toolchain_root/arm-linux-androideabi --> /sysroot/arm-linux-androideabi
/toolchain_root/COPYING3.LIB --> /sysroot/COPYING3.LIB
/toolchain_root/sysroot --> /sysroot/sysroot
/toolchain_root/COPYING.RUNTIME --> /sysroot/COPYING.RUNTIME
/toolchain_root/lib --> /sysroot/lib
/toolchain_root/SOURCES --> /sysroot/SOURCES
/toolchain_root/lib64 --> /sysroot/lib64
/toolchain_root/share --> /sysroot/share
/toolchain_root/bin --> /sysroot/bin
/toolchain_root/COPYING --> /sysroot/COPYING
/toolchain_root/COPYING3 --> /sysroot/COPYING3
/toolchain_root/COPYING.LIB --> /sysroot/COPYING.LIB
/toolchain_root/include --> /sysroot/include
/toolchain_root/libexec --> /sysroot/libexec
CMD: sudo -u tuscan PATH=/sysroot/bin:/sysroot/libexec/gcc/arm-linux-androideabi/4.8:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin CC=arm-linux-androideabi-gcc CXX=arm-linux-androideabi-g++ red makepkg --noextract --syncdeps --skipinteg --skippgpcheck --skipchecksums --noconfirm --nocolor --log --noprogressbar --nocheck
==> Making package: figlet 2.2.5-2 (Tue Apr 4 21:13:21 UTC 2017)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting build()...
gcc -c -g -O2 -Wall -DTLF_FONTS -DDEFAULTFONTDIR=\"/usr/share/figlet/fonts\" \
-DDEFAULTFONTFILE=\"standard\" -o figlet.o figlet.c
gcc -c -g -O2 -Wall -DTLF_FONTS -DDEFAULTFONTDIR=\"/usr/share/figlet/fonts\" \
-DDEFAULTFONTFILE=\"standard\" -o zipio.o zipio.c
gcc -c -g -O2 -Wall -DTLF_FONTS -DDEFAULTFONTDIR=\"/usr/share/figlet/fonts\" \
-DDEFAULTFONTFILE=\"standard\" -o crc.o crc.c
gcc -c -g -O2 -Wall -DTLF_FONTS -DDEFAULTFONTDIR=\"/usr/share/figlet/fonts\" \
-DDEFAULTFONTFILE=\"standard\" -o inflate.o inflate.c
cc1: error: no include path in which to search for stdc-predef.h
zipio.c:76:20: error: no include path in which to search for stdlib.h
#include
^
In file included from zipio.c:81:0:
zipio.h:74:19: error: no include path in which to search for stdio.h
#include
^
zipio.h:95:1: error: unknown type name 'size_t'
size_t Zread(void *ptr, size_t size, size_t n, ZFILE *stream);
^
zipio.h:95:26: error: unknown type name 'size_t'
size_t Zread(void *ptr, size_t size, size_t n, ZFILE *stream);
^
zipio.h:95:39: error: unknown type name 'size_t'
size_t Zread(void *ptr, size_t size, size_t n, ZFILE *stream);
^
zipio.c:239:3: error: unknown type name 'FILE'
FILE *tmpfil; /* file ptr to temp file */
^
zipio.c:259:3: error: unknown type name 'FILE'
FILE *OpenFile; /* currently open file */
^
zipio.c: In function 'BufferInitialize':
zipio.c:292:5: warning: implicit declaration of function 'fseek' [-Wimplicit-function-declaration]
fseek(zs->tmpfil, 0, SEEK_END);
^
zipio.c:293:5: warning: implicit declaration of function 'ftell' [-Wimplicit-function-declaration]
zs->usiz = ftell(zs->tmpfil);
^
zipio.c:304:7: warning: implicit declaration of function 'tmpfile' [-Wimplicit-function-declaration]
zs->tmpfil = tmpfile();
^
zipio.c:304:18: warning: assignment makes pointer from integer without a cast [enabled by default]
zs->tmpfil = tmpfile();
^
zipio.c: In function 'BufferPump':
zipio.c:320:3: error: unknown type name 'size_t'
size_t inplen, ret;
^
zipio.c:330:17: error: 'size_t' undeclared (first use in this function)
inplen = (size_t) (zs->csiz - zs->inpinf);
^
zipio.c:330:17: note: each undeclared identifier is reported only once for each function it appears in
zipio.c:337:5: warning: implicit declaration of function 'fread' [-Wimplicit-function-declaration]
ret = fread(zs->inpbuf, 1, inplen, zs->OpenFile);
^
zipio.c: In function 'BufferRead':
zipio.c:370:27: error: 'size_t' undeclared (first use in this function)
if (fread(buffer, 1, (size_t) length, zs->tmpfil) != length) return TRUE;
^
zipio.c:370:35: error: expected ')' before 'length'
if (fread(buffer, 1, (size_t) length, zs->tmpfil) != length) return TRUE;
^
zipio.c: In function 'BufferAppend':
zipio.c:437:5: warning: implicit declaration of function 'fwrite' [-Wimplicit-function-declaration]
if (fwrite(buffer, 1, (size_t) length, zs->tmpfil) != length) return TRUE;
^
zipio.c:437:9: warning: incompatible implicit declaration of built-in function 'fwrite' [enabled by default]
if (fwrite(buffer, 1, (size_t) length, zs->tmpfil) != length) return TRUE;
^
zipio.c:437:28: error: 'size_t' undeclared (first use in this function)
if (fwrite(buffer, 1, (size_t) length, zs->tmpfil) != length) return TRUE;
^
zipio.c:437:36: error: expected ')' before 'length'
if (fwrite(buffer, 1, (size_t) length, zs->tmpfil) != length) return TRUE;
^
zipio.c:437:36: error: too few arguments to function 'fwrite'
zipio.c:466:9: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
ptr = (unsigned char *) malloc(OUTBUFSIZE);
^
zipio.c:466:33: warning: incompatible implicit declaration of built-in function 'malloc' [enabled by default]
ptr = (unsigned char *) malloc(OUTBUFSIZE);
^
zipio.c: In function 'BufferTerminate':
zipio.c:514:5: warning: implicit declaration of function 'fclose' [-Wimplicit-function-declaration]
fclose(zs->tmpfil);
^
zipio.c:523:7: warning: implicit declaration of function 'free' [-Wimplicit-function-declaration]
if (zs->ptrbuf[i]) free(zs->ptrbuf[i]);
^
zipio.c:523:26: warning: incompatible implicit declaration of built-in function 'free' [enabled by default]
if (zs->ptrbuf[i]) free(zs->ptrbuf[i]);
^
zipio.c: In function 'inflate_malloc':
zipio.c:554:10: warning: incompatible implicit declaration of built-in function 'malloc' [enabled by default]
return malloc((size_t) length);
^
zipio.c:554:18: error: 'size_t' undeclared (first use in this function)
return malloc((size_t) length);
^
zipio.c:554:26: error: expected ')' before 'length'
return malloc((size_t) length);
^
zipio.c: In function 'inflate_free':
zipio.c:559:3: warning: incompatible implicit declaration of built-in function 'free' [enabled by default]
free(buffer);
^
zipio.c: In function 'Zopen':
zipio.c:569:30: warning: incompatible implicit declaration of built-in function 'malloc' [enabled by default]
zs = (struct ZipioState *) malloc(sizeof(struct ZipioState));
^
zipio.c:588:3: warning: implicit declaration of function 'fopen' [-Wimplicit-function-declaration]
zs->OpenFile = fopen(path, mode);
^
zipio.c:588:16: warning: assignment makes pointer from integer without a cast [enabled by default]
zs->OpenFile = fopen(path, mode);
^
zipio.c:591:5: warning: incompatible implicit declaration of built-in function 'free' [enabled by default]
free(zs);
^
zipio.c: At top level:
zipio.c:705:1: error: unknown type name 'size_t'
size_t Zread(void *ptr, size_t size, size_t n, ZFILE *stream)
^
zipio.c:705:25: error: unknown type name 'size_t'
size_t Zread(void *ptr, size_t size, size_t n, ZFILE *stream)
^
zipio.c:705:38: error: unknown type name 'size_t'
size_t Zread(void *ptr, size_t size, size_t n, ZFILE *stream)
^
zipio.c: In function 'Zclose':
zipio.c:814:3: warning: incompatible implicit declaration of built-in function 'free' [enabled by default]
free(ZS);
^
zipio.c: In function 'inflate_malloc':
zipio.c:555:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
cc1: error: no include path in which to search for stdc-predef.h
figlet.c:60:19: error: no include path in which to search for stdio.h
#include
^
figlet.c:62:20: error: no include path in which to search for stdlib.h
#include
^
figlet.c:64:20: error: no include path in which to search for string.h
#include
^
figlet.c:65:19: error: no include path in which to search for ctype.h
#include
^
figlet.c:66:22: error: no include path in which to search for sys/stat.h
#include
^
figlet.c:67:52: error: no include path in which to search for fcntl.h
#include /* Needed for get_columns */
^
figlet.c:70:20: error: no include path in which to search for unistd.h
#include
^
figlet.c:71:52: error: no include path in which to search for sys/ioctl.h
#include /* Needed for get_columns */
^
figlet.c:75:19: error: no include path in which to search for wchar.h
#include
^
figlet.c:76:20: error: no include path in which to search for wctype.h
#include
^
make: *** [Makefile:65: zipio.o] Error 1
In file included from figlet.c:77:0:
utf8.h:23:23: error: no include path in which to search for sys/types.h
#include
^
make: *** Waiting for unfinished jobs....
utf8.h:25:19: error: no include path in which to search for wchar.h
#include
^
utf8.h:30:1: error: unknown type name '__BEGIN_DECLS'
__BEGIN_DECLS
^
utf8.h:32:9: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'utf8_to_wchar'
size_t utf8_to_wchar(const char *in, size_t insize, wchar_t *out,
^
utf8.h:34:1: error: unknown type name 'size_t'
size_t wchar_to_utf8(const wchar_t *in, size_t insize, char *out,
^
utf8.h:34:1: error: unknown type name 'wchar_t'
utf8.h:34:42: error: unknown type name 'size_t'
size_t wchar_to_utf8(const wchar_t *in, size_t insize, char *out,
^
utf8.h:35:7: error: unknown type name 'size_t'
size_t outsize, int flags);
^
In file included from figlet.c:80:0:
zipio.h:74:19: error: no include path in which to search for stdio.h
#include
^
zipio.h:76:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'typedef'
typedef struct {
^
zipio.h:95:1: error: unknown type name 'size_t'
size_t Zread(void *ptr, size_t size, size_t n, ZFILE *stream);
^
zipio.h:95:26: error: unknown type name 'size_t'
size_t Zread(void *ptr, size_t size, size_t n, ZFILE *stream);
^
zipio.h:95:39: error: unknown type name 'size_t'
size_t Zread(void *ptr, size_t size, size_t n, ZFILE *stream);
^
figlet.c:146:1: error: unknown type name 'wchar_t'
typedef wchar_t outchr; /* "char" written to stdout */
^
figlet.c:281:15: error: unknown type name 'size_t'
char *myalloc(size_t size)
^
figlet.c: In function 'hasdirsep':
figlet.c:313:3: warning: implicit declaration of function 'strchr' [-Wimplicit-function-declaration]
if (strchr(s1, DIRSEP)) return 1;
^
figlet.c:313:7: warning: incompatible implicit declaration of built-in function 'strchr' [enabled by default]
if (strchr(s1, DIRSEP)) return 1;
^
figlet.c: In function 'suffixcmp':
figlet.c:332:3: warning: implicit declaration of function 'strlen' [-Wimplicit-function-declaration]
len1 = MYSTRLEN(s1);
^
figlet.c:82:27: warning: incompatible implicit declaration of built-in function 'strlen' [enabled by default]
#define MYSTRLEN(x) ((int)strlen(x)) /* Eliminate ANSI problem */
^
figlet.c:332:10: note: in expansion of macro 'MYSTRLEN'
len1 = MYSTRLEN(s1);
^
figlet.c:337:5: warning: implicit declaration of function 'tolower' [-Wimplicit-function-declaration]
if (tolower(*s1) != tolower(*s2)) return 0;
^
In file included from figlet.c:80:0:
figlet.c: In function 'skiptoeol':
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:357:16: note: in expansion of macro 'Zgetc'
while (dummy=Zgetc(fp),dummy!=EOF) {
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:357:16: note: in expansion of macro 'Zgetc'
while (dummy=Zgetc(fp),dummy!=EOF) {
^
figlet.c:357:33: error: 'EOF' undeclared (first use in this function)
while (dummy=Zgetc(fp),dummy!=EOF) {
^
figlet.c:357:33: note: each undeclared identifier is reported only once for each function it appears in
figlet.c:357:25: warning: left-hand operand of comma expression has no effect [-Wunused-value]
while (dummy=Zgetc(fp),dummy!=EOF) {
^
In file included from figlet.c:80:0:
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:360:15: note: in expansion of macro 'Zgetc'
dummy = Zgetc(fp);
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:360:15: note: in expansion of macro 'Zgetc'
dummy = Zgetc(fp);
^
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:361:42: note: in expansion of macro 'Zungetc'
if (dummy != EOF && dummy != '\n') Zungetc(dummy,fp);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:361:42: note: in expansion of macro 'Zungetc'
if (dummy != EOF && dummy != '\n') Zungetc(dummy,fp);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:361:42: note: in expansion of macro 'Zungetc'
if (dummy != EOF && dummy != '\n') Zungetc(dummy,fp);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:361:42: note: in expansion of macro 'Zungetc'
if (dummy != EOF && dummy != '\n') Zungetc(dummy,fp);
^
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:361:42: note: in expansion of macro 'Zungetc'
if (dummy != EOF && dummy != '\n') Zungetc(dummy,fp);
^
figlet.c: In function 'myfgets':
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:385:12: note: in expansion of macro 'Zgetc'
while((c=Zgetc(fp))!=EOF&&maxlen) {
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:385:12: note: in expansion of macro 'Zgetc'
while((c=Zgetc(fp))!=EOF&&maxlen) {
^
figlet.c:385:24: error: 'EOF' undeclared (first use in this function)
while((c=Zgetc(fp))!=EOF&&maxlen) {
^
In file included from figlet.c:80:0:
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:390:11: note: in expansion of macro 'Zgetc'
c = Zgetc(fp);
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:390:11: note: in expansion of macro 'Zgetc'
c = Zgetc(fp);
^
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:391:34: note: in expansion of macro 'Zungetc'
if (c != EOF && c != '\n') Zungetc(c,fp);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:391:34: note: in expansion of macro 'Zungetc'
if (c != EOF && c != '\n') Zungetc(c,fp);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:391:34: note: in expansion of macro 'Zungetc'
if (c != EOF && c != '\n') Zungetc(c,fp);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:391:34: note: in expansion of macro 'Zungetc'
if (c != EOF && c != '\n') Zungetc(c,fp);
^
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:391:34: note: in expansion of macro 'Zungetc'
if (c != EOF && c != '\n') Zungetc(c,fp);
^
figlet.c:397:21: error: 'NULL' undeclared (first use in this function)
return (c==EOF) ? NULL : line;
^
figlet.c: In function 'printusage':
figlet.c:410:1: error: unknown type name 'FILE'
FILE *out;
^
figlet.c:412:3: warning: implicit declaration of function 'fprintf' [-Wimplicit-function-declaration]
fprintf(out,
^
figlet.c:412:3: warning: incompatible implicit declaration of built-in function 'fprintf' [enabled by default]
figlet.c: In function 'printinfo':
figlet.c:435:7: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
printf("FIGlet Copyright (C) 1991-2012 Glenn Chappell, Ian Chai, ");
^
figlet.c:435:7: warning: incompatible implicit declaration of built-in function 'printf' [enabled by default]
figlet.c:446:18: error: 'stdout' undeclared (first use in this function)
printusage(stdout);
^
In file included from figlet.c:80:0:
figlet.c: In function 'readmagic':
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:484:16: note: in expansion of macro 'Zgetc'
magic[i] = Zgetc(fp);
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:484:16: note: in expansion of macro 'Zgetc'
magic[i] = Zgetc(fp);
^
figlet.c: In function 'skipws':
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:500:12: note: in expansion of macro 'Zgetc'
while (c=Zgetc(fp),isascii(c)&&isspace(c)) ;
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:500:12: note: in expansion of macro 'Zgetc'
while (c=Zgetc(fp),isascii(c)&&isspace(c)) ;
^
figlet.c:500:3: warning: implicit declaration of function 'isascii' [-Wimplicit-function-declaration]
while (c=Zgetc(fp),isascii(c)&&isspace(c)) ;
^
figlet.c:500:3: warning: implicit declaration of function 'isspace' [-Wimplicit-function-declaration]
figlet.c:500:21: warning: left-hand operand of comma expression has no effect [-Wunused-value]
while (c=Zgetc(fp),isascii(c)&&isspace(c)) ;
^
In file included from figlet.c:80:0:
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:501:3: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:501:3: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:501:3: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:501:3: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:501:3: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
figlet.c: In function 'readnum':
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:524:7: note: in expansion of macro 'Zgetc'
c = Zgetc(fp);
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:524:7: note: in expansion of macro 'Zgetc'
c = Zgetc(fp);
^
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:529:5: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:529:5: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:529:5: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:529:5: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:529:5: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:531:7: note: in expansion of macro 'Zgetc'
c = Zgetc(fp);
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:531:7: note: in expansion of macro 'Zgetc'
c = Zgetc(fp);
^
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:533:10: note: in expansion of macro 'Zgetc'
c = Zgetc(fp);
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:533:10: note: in expansion of macro 'Zgetc'
c = Zgetc(fp);
^
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:539:8: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:539:8: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:539:8: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:539:8: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:539:8: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:544:5: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:544:5: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:544:5: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:544:5: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:544:5: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:547:12: note: in expansion of macro 'Zgetc'
while((c=Zgetc(fp))!=EOF) {
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:547:12: note: in expansion of macro 'Zgetc'
while((c=Zgetc(fp))!=EOF) {
^
figlet.c:547:24: error: 'EOF' undeclared (first use in this function)
while((c=Zgetc(fp))!=EOF) {
^
figlet.c:548:5: warning: implicit declaration of function 'toupper' [-Wimplicit-function-declaration]
c=toupper(c);
^
figlet.c:549:7: warning: incompatible implicit declaration of built-in function 'strchr' [enabled by default]
p=strchr(digits,c);
^
In file included from figlet.c:80:0:
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:551:7: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:551:7: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:551:7: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:551:7: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:551:7: note: in expansion of macro 'Zungetc'
Zungetc(c,fp);
^
figlet.c: In function 'readTchar':
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:577:11: note: in expansion of macro 'Zgetc'
thechar=Zgetc(fp);
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:577:11: note: in expansion of macro 'Zgetc'
thechar=Zgetc(fp);
^
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:579:5: note: in expansion of macro 'Zungetc'
Zungetc(thechar,fp);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:579:5: note: in expansion of macro 'Zungetc'
Zungetc(thechar,fp);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:579:5: note: in expansion of macro 'Zungetc'
Zungetc(thechar,fp);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:579:5: note: in expansion of macro 'Zungetc'
Zungetc(thechar,fp);
^
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:579:5: note: in expansion of macro 'Zungetc'
Zungetc(thechar,fp);
^
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:583:8: note: in expansion of macro 'Zgetc'
next=Zgetc(fp);
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:583:8: note: in expansion of macro 'Zgetc'
next=Zgetc(fp);
^
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:603:9: note: in expansion of macro 'Zungetc'
Zungetc(next,fp);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:603:9: note: in expansion of macro 'Zungetc'
Zungetc(next,fp);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:603:9: note: in expansion of macro 'Zungetc'
Zungetc(next,fp);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:603:9: note: in expansion of macro 'Zungetc'
Zungetc(next,fp);
^
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:603:9: note: in expansion of macro 'Zungetc'
Zungetc(next,fp);
^
figlet.c: In function 'charsetname':
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:628:5: note: in expansion of macro 'Zungetc'
Zungetc(result,fp);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:628:5: note: in expansion of macro 'Zungetc'
Zungetc(result,fp);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:628:5: note: in expansion of macro 'Zungetc'
Zungetc(result,fp);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:628:5: note: in expansion of macro 'Zungetc'
Zungetc(result,fp);
^
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:628:5: note: in expansion of macro 'Zungetc'
Zungetc(result,fp);
^
figlet.c: In function 'charset':
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:649:7: note: in expansion of macro 'Zgetc'
if (Zgetc(controlfile) != '9') {
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:649:7: note: in expansion of macro 'Zgetc'
if (Zgetc(controlfile) != '9') {
^
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:653:8: note: in expansion of macro 'Zgetc'
ch = Zgetc(controlfile);
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:653:8: note: in expansion of macro 'Zgetc'
ch = Zgetc(controlfile);
^
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:664:8: note: in expansion of macro 'Zgetc'
ch = Zgetc(controlfile);
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:664:8: note: in expansion of macro 'Zgetc'
ch = Zgetc(controlfile);
^
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:666:10: note: in expansion of macro 'Zgetc'
if (Zgetc(controlfile) != '9') {
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:666:10: note: in expansion of macro 'Zgetc'
if (Zgetc(controlfile) != '9') {
^
cc1: error: no include path in which to search for stdc-predef.h
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:670:10: note: in expansion of macro 'Zgetc'
if (Zgetc(controlfile) != '4') {
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:670:10: note: in expansion of macro 'Zgetc'
if (Zgetc(controlfile) != '4') {
^
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:680:3: note: in expansion of macro 'Zungetc'
Zungetc(ch, controlfile);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:680:3: note: in expansion of macro 'Zungetc'
Zungetc(ch, controlfile);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:680:3: note: in expansion of macro 'Zungetc'
Zungetc(ch, controlfile);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:680:3: note: in expansion of macro 'Zungetc'
Zungetc(ch, controlfile);
^
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:680:3: note: in expansion of macro 'Zungetc'
Zungetc(ch, controlfile);
^
figlet.c: In function 'FIGopen':
figlet.c:702:15: error: storage size of 'st' isn't known
struct stat st;
^
figlet.c:82:27: warning: incompatible implicit declaration of built-in function 'strlen' [enabled by default]
#define MYSTRLEN(x) ((int)strlen(x)) /* Eliminate ANSI problem */
^
figlet.c:705:13: note: in expansion of macro 'MYSTRLEN'
namelen = MYSTRLEN(fontdirname);
^
figlet.c:706:3: warning: implicit declaration of function 'alloca' [-Wimplicit-function-declaration]
fontpath = (char*)alloca(sizeof(char)*
^
figlet.c:706:21: warning: incompatible implicit declaration of built-in function 'alloca' [enabled by default]
fontpath = (char*)alloca(sizeof(char)*
^
figlet.c:708:14: error: 'NULL' undeclared (first use in this function)
fontfile = NULL;
^
figlet.c:710:5: warning: implicit declaration of function 'strcpy' [-Wimplicit-function-declaration]
strcpy(fontpath,fontdirname);
^
figlet.c:710:5: warning: incompatible implicit declaration of built-in function 'strcpy' [enabled by default]
figlet.c:713:5: warning: implicit declaration of function 'strcat' [-Wimplicit-function-declaration]
strcat(fontpath,name);
^
figlet.c:713:5: warning: incompatible implicit declaration of built-in function 'strcat' [enabled by default]
cc1: error: no include path in which to search for stdc-predef.h
figlet.c:715:5: warning: implicit declaration of function 'stat' [-Wimplicit-function-declaration]
if(stat(fontpath,&st)==0) goto ok;
^
figlet.c:718:3: warning: incompatible implicit declaration of built-in function 'strcpy' [enabled by default]
strcpy(fontpath,name);
^
figlet.c:719:3: warning: incompatible implicit declaration of built-in function 'strcat' [enabled by default]
strcat(fontpath,suffix);
^
figlet.c:702:15: warning: unused variable 'st' [-Wunused-variable]
struct stat st;
^
figlet.c: In function 'readcontrol':
figlet.c:749:20: error: 'NULL' undeclared (first use in this function)
if (controlfile==NULL) {
^
figlet.c:750:5: warning: incompatible implicit declaration of built-in function 'fprintf' [enabled by default]
fprintf(stderr,"%s: %s: Unable to open control file\n",myname,
^
figlet.c:750:13: error: 'stderr' undeclared (first use in this function)
fprintf(stderr,"%s: %s: Unable to open control file\n",myname,
^
figlet.c:752:5: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration]
exit(1);
^
figlet.c:752:5: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default]
figlet.c:755:3: warning: implicit declaration of function 'myalloc' [-Wimplicit-function-declaration]
(*commandlistend) = (comnode*)myalloc(sizeof(comnode));
^
In file included from figlet.c:80:0:
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:760:17: note: in expansion of macro 'Zgetc'
while(command=Zgetc(controlfile),command!=EOF) {
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:760:17: note: in expansion of macro 'Zgetc'
while(command=Zgetc(controlfile),command!=EOF) {
^
figlet.c:760:45: error: 'EOF' undeclared (first use in this function)
while(command=Zgetc(controlfile),command!=EOF) {
^
figlet.c:760:35: warning: left-hand operand of comma expression has no effect [-Wunused-value]
while(command=Zgetc(controlfile),command!=EOF) {
^
In file included from figlet.c:80:0:
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:765:24: note: in expansion of macro 'Zgetc'
if ((dashcheck=Zgetc(controlfile))=='-') {
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:765:24: note: in expansion of macro 'Zgetc'
if ((dashcheck=Zgetc(controlfile))=='-') {
^
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:769:11: note: in expansion of macro 'Zungetc'
Zungetc(dashcheck,controlfile);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:769:11: note: in expansion of macro 'Zungetc'
Zungetc(dashcheck,controlfile);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:769:11: note: in expansion of macro 'Zungetc'
Zungetc(dashcheck,controlfile);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:769:11: note: in expansion of macro 'Zungetc'
Zungetc(dashcheck,controlfile);
^
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:769:11: note: in expansion of macro 'Zungetc'
Zungetc(dashcheck,controlfile);
^
zipio.h:87:7: error: 'ZFILE' has no member named 'ptr'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:787:9: note: in expansion of macro 'Zungetc'
Zungetc(command,controlfile);
^
zipio.h:87:19: error: 'ZFILE' has no member named 'len'
((f)->ptr--, (f)->len++, (c))
^
figlet.c:787:9: note: in expansion of macro 'Zungetc'
Zungetc(command,controlfile);
^
zipio.h:87:14: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:787:9: note: in expansion of macro 'Zungetc'
Zungetc(command,controlfile);
^
zipio.h:87:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:787:9: note: in expansion of macro 'Zungetc'
Zungetc(command,controlfile);
^
make: *** [Makefile:65: crc.o] Error 1
zipio.h:87:3: warning: statement with no effect [-Wunused-value]
((f)->ptr--, (f)->len++, (c))
^
figlet.c:787:9: note: in expansion of macro 'Zungetc'
Zungetc(command,controlfile);
^
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:824:17: note: in expansion of macro 'Zgetc'
command=Zgetc(controlfile);
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:824:17: note: in expansion of macro 'Zgetc'
command=Zgetc(controlfile);
^
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:840:18: note: in expansion of macro 'Zgetc'
gl = Zgetc(controlfile) - '0';
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:840:18: note: in expansion of macro 'Zgetc'
gl = Zgetc(controlfile) - '0';
^
zipio.h:82:11: error: 'ZFILE' has no member named 'len'
((--((f)->len) >= 0) \
^
figlet.c:845:18: note: in expansion of macro 'Zgetc'
gr = Zgetc(controlfile) - '0';
^
zipio.h:83:27: error: 'ZFILE' has no member named 'ptr'
? (unsigned char)(*(f)->ptr++) \
^
figlet.c:845:18: note: in expansion of macro 'Zgetc'
gr = Zgetc(controlfile) - '0';
^
figlet.c: In function 'readcontrolfiles':
figlet.c:874:33: error: 'NULL' undeclared (first use in this function)
for (cfnptr=cfilelist;cfnptr!=NULL;cfnptr=cfnptr->next) {
^
figlet.c: In function 'clearcfilelist':
figlet.c:893:21: error: 'NULL' undeclared (first use in this function)
while (cfnptr1 != NULL) {
^
figlet.c:895:5: warning: implicit declaration of function 'free' [-Wimplicit-function-declaration]
free(cfnptr1);
^
figlet.c:895:5: warning: incompatible implicit declaration of built-in function 'free' [enabled by default]
figlet.c: In function 'getparams':
figlet.c:920:3: warning: implicit declaration of function 'strrchr' [-Wimplicit-function-declaration]
if ((myname = strrchr(Myargv[0],DIRSEP))!=NULL) {
^
figlet.c:920:17: warning: incompatible implicit declaration of built-in function 'strrchr' [enabled by default]
if ((myname = strrchr(Myargv[0],DIRSEP))!=NULL) {
^
figlet.c:920:45: error: 'NULL' undeclared (first use in this function)
if ((myname = strrchr(Myargv[0],DIRSEP))!=NULL) {
^
figlet.c:927:3: warning: implicit declaration of function 'getenv' [-Wimplicit-function-declaration]
env = getenv("FIGLET_FONTDIR");
^
figlet.c:927:7: warning: assignment makes pointer from integer without a cast [enabled by default]
env = getenv("FIGLET_FONTDIR");
^
figlet.c:946:3: warning: implicit declaration of function 'getopt' [-Wimplicit-function-declaration]
while ((c = getopt(Myargc,Myargv,"ADEXLRI:xlcrpntvm:w:d:f:C:NFskSWo"))!= -1) {
^
figlet.c:1011:9: warning: incompatible implicit declaration of built-in function 'fprintf' [enabled by default]
fprintf(stderr,
^
figlet.c:1011:17: error: 'stderr' undeclared (first use in this function)
fprintf(stderr,
^
figlet.c:1020:9: warning: implicit declaration of function 'atoi' [-Wimplicit-function-declaration]
infoprint = atoi(optarg);
^
figlet.c:82:27: warning: incompatible implicit declaration of built-in function 'strlen' [enabled by default]
#define MYSTRLEN(x) ((int)strlen(x)) /* Eliminate ANSI problem */
^
figlet.c:1045:20: note: in expansion of macro 'MYSTRLEN'
fontname[MYSTRLEN(fontname)-FSUFFIXLEN] = '\0';
^
figlet.c:82:27: warning: incompatible implicit declaration of built-in function 'strlen' [enabled by default]
#define MYSTRLEN(x) ((int)strlen(x)) /* Eliminate ANSI problem */
^
figlet.c:1049:20: note: in expansion of macro 'MYSTRLEN'
fontname[MYSTRLEN(fontname)-TSUFFIXLEN] = '\0';
^
figlet.c:82:27: warning: incompatible implicit declaration of built-in function 'strlen' [enabled by default]
#define MYSTRLEN(x) ((int)strlen(x)) /* Eliminate ANSI problem */
^
figlet.c:1056:23: note: in expansion of macro 'MYSTRLEN'
controlname[MYSTRLEN(controlname)-CSUFFIXLEN] = '\0';
^
figlet.c:1084:9: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default]
exit(1);
^
figlet.c:1095:5: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default]
exit(0);
^
figlet.c: In function 'readfontchar':
figlet.c:1145:40: error: 'NULL' undeclared (first use in this function)
if (myfgets(templine,MAXLEN,file)==NULL) {
^
figlet.c:1149:5: warning: implicit declaration of function 'utf8_to_wchar' [-Wimplicit-function-declaration]
utf8_to_wchar(templine,MAXLEN,outline,MAXLEN,0);
^
figlet.c:1153:5: warning: implicit declaration of function 'wcslen' [-Wimplicit-function-declaration]
k = STRLEN(outline)-1;
^
figlet.c:1154:5: warning: implicit declaration of function 'iswspace' [-Wimplicit-function-declaration]
while (k>=0 && ISSPACE(outline[k])) { /* remove trailing spaces */
^
figlet.c:1165:5: warning: implicit declaration of function 'wcscpy' [-Wimplicit-function-declaration]
STRCPY(fcharlist->thechar[row],outline);
^
figlet.c: In function 'readfont':
figlet.c:1190:17: error: 'NULL' undeclared (first use in this function)
if (fontfile==NULL) {
^
figlet.c:1197:5: warning: incompatible implicit declaration of built-in function 'fprintf' [enabled by default]
fprintf(stderr,"%s: %s: Unable to open font file\n",myname,fontname);
^
figlet.c:1197:13: error: 'stderr' undeclared (first use in this function)
fprintf(stderr,"%s: %s: Unable to open font file\n",myname,fontname);
^
figlet.c:1198:5: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default]
exit(1);
^
figlet.c:82:27: warning: incompatible implicit declaration of built-in function 'strlen' [enabled by default]
#define MYSTRLEN(x) ((int)strlen(x)) /* Eliminate ANSI problem */
^
figlet.c:1205:7: note: in expansion of macro 'MYSTRLEN'
if (MYSTRLEN(fileline)>0 ? fileline[MYSTRLEN(fileline)-1]!='\n' : 0) {
^
figlet.c:1208:3: warning: implicit declaration of function 'sscanf' [-Wimplicit-function-declaration]
numsread = sscanf(fileline,"%*c%c %d %*d %d %d %d %d %d",
^
figlet.c:1208:14: warning: incompatible implicit declaration of built-in function 'sscanf' [enabled by default]
numsread = sscanf(fileline,"%*c%c %d %*d %d %d %d %d %d",
^
figlet.c:1213:5: warning: incompatible implicit declaration of built-in function 'fprintf' [enabled by default]
fprintf(stderr,"%s: %s: character is too wide\n",myname,fontname);
^
figlet.c:1214:5: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default]
exit(1);
^
figlet.c:1217:3: warning: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration]
if ((!toiletfont && strcmp(magicnum,FONTFILEMAGICNUMBER)) ||
^
figlet.c:1222:5: warning: incompatible implicit declaration of built-in function 'fprintf' [enabled by default]
fprintf(stderr,"%s: %s: Not a FIGlet 2 font file\n",myname,fontname);
^
figlet.c:1223:5: warning: incompatible implicit declaration of built-in function 'exit' [enabled by default]
exit(1);
^
figlet.c: In function 'getletter':
figlet.c:1322:35: error: 'NULL' undeclared (first use in this function)
for (charptr=fcharlist;charptr==NULL?0:charptr->ord!=c;
^
figlet.c: In function 'smushem':
figlet.c:1395:21: warning: incompatible implicit declaration of built-in function 'strchr' [enabled by default]
if (lch=='_' && strchr("|/\\[]{}()<>",rch)) return rch;
^
figlet.c:1400:21: warning: incompatible implicit declaration of built-in function 'strchr' [enabled by default]
if (lch=='|' && strchr("/\\[]{}()<>",rch)) return rch;
^
figlet.c: In function 'addchar':
figlet.c:1510:7: warning: implicit declaration of function 'wcscat' [-Wimplicit-function-declaration]
STRCAT(templine,outputline[row]+smushamount);
^
figlet.c:1525:3: warning: incompatible implicit declaration of built-in function 'free' [enabled by default]
free(templine);
^
figlet.c: In function 'putstring':
figlet.c:1551:3: error: unknown type name 'size_t'
size_t size;
^
figlet.c:1552:3: error: unknown type name 'wchar_t'
wchar_t wc[2];
^
figlet.c:1562:9: warning: implicit declaration of function 'putchar' [-Wimplicit-function-declaration]
putchar(' ');
^
figlet.c:1570:5: warning: implicit declaration of function 'wchar_to_utf8' [-Wimplicit-function-declaration]
size = wchar_to_utf8(wc,1,c,10,0);
^
figlet.c:1577:5: warning: incompatible implicit declaration of built-in function 'printf' [enabled by default]
printf("%s",c);
^
figlet.c: In function 'splitline':
figlet.c:1649:3: warning: incompatible implicit declaration of built-in function 'free' [enabled by default]
free(part1);
^
figlet.c: In function 'handlemapping':
make: *** [Makefile:65: inflate.o] Error 1
figlet.c:1669:17: error: 'NULL' undeclared (first use in this function)
while (cmptr!=NULL) {
^
figlet.c: In function 'Agetchar':
figlet.c:1702:2: warning: implicit declaration of function 'getchar' [-Wimplicit-function-declaration]
return( getchar() ); /* no: return stdin character */
^
figlet.c:1705:10: error: 'EOF' undeclared (first use in this function)
return( EOF ); /* **ensure it now and forever more */
^
figlet.c: In function 'iso2022':
figlet.c:1745:13: error: 'EOF' undeclared (first use in this function)
if (ch == EOF) return ch;
^
figlet.c: In function 'getinchr':
figlet.c:1949:16: error: 'EOF' undeclared (first use in this function)
if (ch == EOF) return ch;
^
figlet.c: In function 'main':
figlet.c:2028:28: error: 'EOF' undeclared (first use in this function)
while ((c = getinchr())!=EOF) {
^
figlet.c: In function 'myfgets':
figlet.c:398:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
make: *** [Makefile:65: figlet.o] Error 1
==> ERROR: A failure occurred in build().
Aborting...