#include "strdup.h" #include #include char *strdup(const char *s ) { char *p; if ( (p = (char *) malloc( strlen( s ) + 1 )) == NULL ) return( NULL ); strcpy( p, s ); return( p ); } ?h=main' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
* devel/boost-*: update to 1.72.0Jan Beich2019-12-121-1/+1
* graphics: Add missing USES={gl,gnome,sdl}Tobias Kortkamp2019-11-081-1/+1
* devel/boost-*: update to 1.71.0Jan Beich2019-08-191-1/+1
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-271-1/+1
* devel/boost-*: update to 1.70.0Jan Beich2019-04-121-1/+1
* graphics/fracplanet: remove Flavors (Qt4 deprecation)Tobias C. Berner2019-03-171-15/+4
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-16