Ignore:
Timestamp:
2009-01-22T14:22:12Z (16 years ago)
Author:
Tim Post <echo@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bf226890
Parents:
fc11b8a
Message:

Get rid of cli_strdup(), cli_strtok(), cli_strtok_r(), just use facilities in libc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/touch/touch.c

    rfc11b8a r4cc0c9ee  
    3838#include <dirent.h>
    3939#include <sys/types.h>
     40#include <string.h>
    4041
    4142#include "config.h"
     
    8081
    8182        for (i = 1; i < argc; i ++) {
    82                 buff = cli_strdup(argv[i]);
     83                buff = strdup(argv[i]);
    8384                dirp = opendir(buff);
    8485                if (dirp) {
Note: See TracChangeset for help on using the changeset viewer.