Subversion Repositories Kolibri OS

Rev

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 <sys/ksys.h>
  7.  
  8. int chdir(char* dir){
  9.     _ksys_setcwd(dir);
  10.     return 0;
  11. }
  12.