Changeset 7afb4a5 in mainline for uspace/srv/loader/main.c


Ignore:
Timestamp:
2009-04-09T21:28:50Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
095003a8
Parents:
92fd52d7
Message:

Nuke strchr() and strrchr().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/loader/main.c

    r92fd52d7 r7afb4a5  
    276276       
    277277        /* Set the task name. */
    278         cp = strrchr(pathname, '/');
     278        cp = str_rchr(pathname, '/');
    279279        cp = (cp == NULL) ? pathname : (cp + 1);
    280280        task_set_name(cp);
Note: See TracChangeset for help on using the changeset viewer.