Codebase list xd / upstream/3.10.2 alternatives / getcwd.cc
upstream/3.10.2

Tree @upstream/3.10.2 (Download .tar.gz)

getcwd.cc @upstream/3.10.2raw · history · blame

1
2
3
4
5
6
7
8
9
#include "alternatives.ih"

void Alternatives::getCwd(auto_ptr<char> *dest)
{
    dest->reset(new char[PATH_MAX]);

    if (not realpath(".", dest->get()))
        msg() << "Can't determine the current working dir." << fatal;
}