Enhance support for relaxe ISO constraints.

This commit is contained in:
Vreixo Formoso
2008-01-15 00:21:07 +01:00
parent 9ad9b10c67
commit 9a66c6cd33
9 changed files with 63 additions and 6 deletions

View File

@ -12,6 +12,7 @@
#include "filesrc.h"
#include "node.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
@ -41,7 +42,7 @@ static void
print_dir(Ecma119Node *dir, int level)
{
int i;
char sp[level * 2 + 1];
char *sp = alloca(level * 2 + 1);
for (i = 0; i < level * 2; i += 2) {
sp[i] = '|';

View File

@ -55,6 +55,7 @@ int main(int argc, char **argv)
0, /* joliet */
0, /* omit_version_numbers */
0, /* allow_deep_paths */
0, /* allow_longer_paths */
0, /* max_37_char_filenames */
0, /* no_force_dots */
0, /* allow_lowercase */

View File

@ -38,6 +38,7 @@ int main(int argc, char **argv)
0, /* joliet */
0, /* omit_version_numbers */
0, /* allow_deep_paths */
0, /* allow_longer_paths */
0, /* max_37_char_filenames */
0, /* no_force_dots */
0, /* allow_lowercase */

View File

@ -33,6 +33,7 @@ int main(int argc, char **argv)
0, /* joliet */
0, /* omit_version_numbers */
0, /* allow_deep_paths */
0, /* allow_longer_paths */
0, /* max_37_char_filenames */
0, /* no_force_dots */
0, /* allow_lowercase */

View File

@ -33,6 +33,7 @@ int main(int argc, char **argv)
0, /* joliet */
0, /* omit_version_numbers */
0, /* allow_deep_paths */
0, /* allow_longer_paths */
0, /* max_37_char_filenames */
0, /* no_force_dots */
0, /* allow_lowercase */