Skip to content
Snippets Groups Projects
Verified Commit fdb10df2 authored by Christian Marangi's avatar Christian Marangi
Browse files

various: fix compilation error for missing limits.h


Fix compilation error for missing limits.h due to PATH_MAX.

Signed-off-by: default avatarChristian Marangi <ansuelsmth@gmail.com>
parent 8abae478
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <limits.h>
#include <sys/stat.h>
#include "apk_adb.h"
......
......@@ -7,6 +7,7 @@
* SPDX-License-Identifier: GPL-2.0-only
*/
#include <limits.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment