trying to get PATH_MAX

master
Allen Webster 2017-06-30 21:36:51 -04:00
parent 4abdf2f530
commit 66618ec990
2 changed files with 7 additions and 4 deletions

View File

@ -186,7 +186,8 @@ expand_track_system_listeners(File_Track_System *system, Partition *scratch, voi
if (size < PATH_MAX){
result = FileTrack_MemoryTooSmall;
} else {
}
else{
vars->string_mem_begin = (char*)mem;
vars->string_mem_end = (char*)mem + size;;
}

View File

@ -43,6 +43,8 @@
#include "4ed_font_interface_to_os.h"
#include "4ed_system_shared.h"
#include <sys/syslimits.h>
#include "unix_4ed_functions.cpp"
#include "osx_objective_c_to_cpp_links.h"