Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * Copyright (C) KolibriOS team 2004-2024. All rights reserved.
  3.  * Distributed under terms of the GNU General Public License
  4. */
  5.  
  6. #include <stdlib.h>
  7. #include <sys/ksys.h>
  8.  
  9. char *getcwd(char *buf, unsigned size){
  10.     if(!buf){
  11.        if((buf = malloc(size))==NULL){
  12.            return NULL;
  13.        }
  14.     }
  15.     _ksys_getcwd(buf, size);
  16.     return(buf);
  17. }
  18.