Changes in uspace/lib/posix/src/unistd.c [fec7ba0:f1045bb] in mainline
- File:
-
- 1 edited
-
uspace/lib/posix/src/unistd.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/src/unistd.c
rfec7ba0 rf1045bb 1 1 /* 2 * Copyright (c) 2026 Jiri Svoboda 2 3 * Copyright (c) 2011 Jiri Zarevucky 3 4 * Copyright (c) 2011 Petr Koupy … … 50 51 #include <task.h> 51 52 #include <stats.h> 52 #include < malloc.h>53 #include <stdlib.h> 53 54 #include <vfs/vfs.h> 54 55 … … 59 60 60 61 /* Array of environment variable strings (NAME=VALUE). */ 61 char **environ = NULL; 62 static char *environ_initial[] = { NULL }; 63 char **environ = environ_initial; 62 64 63 65 /** … … 530 532 /** 531 533 * 534 * @param file 535 * @param argv 536 * @return 537 */ 538 int execlp(const char *file, const char *arg, ...) 539 { 540 // TODO: low priority, just a compile-time dependency of dosbox 541 not_implemented(); 542 return -1; 543 } 544 545 /** 546 * 532 547 * @param fildes 533 548 * @return
Note:
See TracChangeset
for help on using the changeset viewer.
