Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/src/unistd.c

    rf1045bb r44e8541  
    11/*
    2  * Copyright (c) 2026 Jiri Svoboda
    32 * Copyright (c) 2011 Jiri Zarevucky
    43 * Copyright (c) 2011 Petr Koupy
     
    6059
    6160/* Array of environment variable strings (NAME=VALUE). */
    62 static char *environ_initial[] = { NULL };
    63 char **environ = environ_initial;
     61char **environ = NULL;
    6462
    6563/**
     
    532530/**
    533531 *
    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  *
    547532 * @param fildes
    548533 * @return
Note: See TracChangeset for help on using the changeset viewer.