Home

root/tasks/pwd.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

#include "syscalls.h"

int main(void)
{
    unsigned char *cwd = getcwd();
    printf("%s\n", cwd);
    free(cwd);
    exit();
    return (0);
}

/* [<][>][^][v][top][bottom][index][help] */
Home