Skip to content

Commit

Permalink
PATH_MAX is not exactly portable. Hack around it for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
bentley committed Oct 10, 2014
1 parent e28d838 commit c6c7b99
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/asm/fstack.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
#include "extern/err.h"
#include "extern/strl.h"

#ifndef PATH_MAX
#define PATH_MAX 256
#endif

/*
* RGBAsm - FSTACK.C (FileStack routines)
*
Expand Down

0 comments on commit c6c7b99

Please sign in to comment.