Ignore:
File:
1 edited

Legend:

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

    rfec7ba0 rbc999081  
    11/*
     2 * Copyright (c) 2025 Jiri Svoboda
    23 * Copyright (c) 2011 Jiri Zarevucky
    34 * Copyright (c) 2011 Petr Koupy
     
    5051#include <task.h>
    5152#include <stats.h>
    52 #include <malloc.h>
     53#include <stdlib.h>
    5354#include <vfs/vfs.h>
    5455
     
    530531/**
    531532 *
     533 * @param file
     534 * @param argv
     535 * @return
     536 */
     537int execlp(const char *file, const char *arg, ...)
     538{
     539        // TODO: low priority, just a compile-time dependency of dosbox
     540        not_implemented();
     541        return -1;
     542}
     543
     544/**
     545 *
    532546 * @param fildes
    533547 * @return
Note: See TracChangeset for help on using the changeset viewer.