aboutsummaryrefslogtreecommitdiffstats
path: root/langs/fr/thank-you.po
Commit message (Expand)AuthorAgeFilesLines
* Update French translationYuri Chornoivan2019-07-281-2/+2
* Revert "Updated Estonian translation"Thomas Backlund2014-10-121-0/+121
* Updated Estonian translationMarek Laane2014-10-121-121/+0
* Update French translations from TransifexYuri Chornoivan2014-04-211-13/+41
* page thank-you converted to gettextFilip Komar2014-03-181-0/+93
or'>author
path: root/mdk-stage1/dietlibc/lib/strdup.c
blob: 6a2ea5f950eb753af2ca1acc78aa3a00ee90a49d (plain)
1
2
3
4
5
6
7
8
9
#include <string.h>
#include <stdlib.h>

char *strdup(const char *s) {
  char *tmp=(char *)malloc(strlen(s)+1);
  if (!tmp) return 0;
  strcpy(tmp,s);
  return tmp;
}