~mysql/mysql-server/mysql-6.0

« back to all changes in this revision

Viewing changes to mit-pthreads/tests/test_cwd.c

  • Committer: bk at mysql
  • Date: 2000-07-31 19:29:14 UTC
  • Revision ID: sp1r-bk@work.mysql.com-20000731192914-08846
Import changeset

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdio.h>
 
2
 
 
3
main(int argc, char **argv)
 
4
{
 
5
    char wd[1024], *getcwd(), *getwd();
 
6
 
 
7
    pthread_init();
 
8
    printf("getcwd => %s\n", getcwd(wd, 1024));
 
9
    printf("getwd => %s\n", getwd(wd));
 
10
    exit(0);
 
11
}