summaryrefslogtreecommitdiff
path: root/include/libc/strcpy.h
blob: e70efe090340bb71a1cbdbbe9ceae93c3180e53c (plain)
1
2
3
4
5
6
7
8
#ifndef LIBC_STRCPY_H
#define LIBC_STRCPY_H

#include "ultra64.h"

char* strcpy(char* dst, const char* src);

#endif