DEADSOFTWARE

portability: avoid errors on some compilers
[flatwaifu.git] / src / common / cp866.c
index b8ce2a451b5c6e82f2b36779c7f3ca1ce391e63e..a28b297d5d36b2f367c893f1c9f35d1b1711e467 100644 (file)
@@ -13,7 +13,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#include "cp866.h"
+#include "common/cp866.h"
 
 int cp866_isalpha (int ch) {
   return (ch >= 0x41 && ch <= 0x5A) || (ch >= 0x61 && ch <= 0x7A) || (ch >= 0x80 && ch <= 0xAF) || (ch >= 0xE0 && ch <= 0xF7);