Skip to content

Commit

Permalink
Fixes #372.
Browse files Browse the repository at this point in the history
Merge changes to fix a build issue for the DJGPP/MS-DOS environment.
  • Loading branch information
mdadams committed Feb 12, 2024
2 parents 810c613 + 6504d16 commit cc6a3b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libjasper/base/jas_malloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ size_t jas_get_total_mem_size()
return 0;
}
return JAS_CAST(size_t, value);
#elif defined(__unix__) && (!defined(__linux__) && !defined(__APPLE__))
#elif defined(__unix__) && (!defined(__linux__) && !defined(__APPLE__) && !defined(__DJGPP__))
/*
Reference:
https://stackoverflow.com/questions/2513505/how-to-get-available-memory-c-g
Expand Down

0 comments on commit cc6a3b2

Please sign in to comment.