Просмотр исходного кода

apt-helper.cc: include <stdlib.h> for atoi

Include <stdlib.h> to ensure that atoi(3) is defined to improve
general portability and fix a specific build failure on Android.

Closes: 807031
Fredrik Fornwall лет назад: 10
Родитель
Сommit
2f17261da9
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      cmdline/apt-helper.cc

+ 2 - 0
cmdline/apt-helper.cc

@@ -29,6 +29,8 @@
 #include <string>
 #include <vector>
 
+#include <stdlib.h>
+
 #include <apti18n.h>
 									/*}}}*/