figure002 / nextwall

A wallpaper rotator for the GNOME desktop.
GNU General Public License v3.0
7 stars 1 forks source link

add string.h as include to remove implicit declaration errors #7

Closed techhazard closed 7 years ago

techhazard commented 7 years ago

The following functions are used in nextwall.c:

These all gave an error because the were not explicitly declared.

This pull request adds the explicit declarations for string functions by including string.h.

figure002 commented 7 years ago

Thanks! It surprises me that gcc doesn't warn for this on Linux.