dse / vtclock

a giant text-mode clock
GNU General Public License v2.0
30 stars 6 forks source link

fix implicit declaration of isspace #3

Closed grische closed 2 months ago

grische commented 6 years ago

Currently make issues the following compiler warning because of a missing include:

$ make
Fixing dependencies for figlet.c . . .
Fixing dependencies for msg.c . . .
Fixing dependencies for vtclock.c . . .
cc -c     vtclock.c
cc -c     msg.c
cc -c     figlet.c
figlet.c: In function ‘get_character_dimensions’:
figlet.c:78:14: warning: implicit declaration of function ‘isspace’ [-Wimplicit-function-declaration]
   } else if (isspace(*p)) {
              ^~~~~~~
cc  -o vtclock vtclock.o msg.o figlet.o  -lncurses 
grische commented 1 year ago

@dse could you have a look at that?

dse commented 2 months ago

It's fixed now. I manually fixed it and forgot to take further action on this PR; thanks.