Subversion Repositories Kolibri OS

Rev

Rev 4874 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4874 Rev 4921
Line 41... Line 41...
41
};
41
};
Line 42... Line 42...
42
 
42
 
43
/* Note: This implementation of wordexp requires a version of bash
43
/* Note: This implementation of wordexp requires a version of bash
44
   that supports the --wordexp and --protected arguments to be present
44
   that supports the --wordexp and --protected arguments to be present
45
   on the system.  It does not support the WRDE_UNDEF flag. */
45
   on the system.  It does not support the WRDE_UNDEF flag. */
46
int wordexp(const char *, wordexp_t *, int);
46
int wordexp(const char *__restrict, wordexp_t *__restrict, int);
Line 47... Line 47...
47
void wordfree(wordexp_t *);
47
void wordfree(wordexp_t *);
48
 
48
 
49
#ifdef __cplusplus
49
#ifdef __cplusplus