ref: 908a7524eec1bbefc431041dfdf805f585d7f255
dir: /sys/src/libString/s_unique.c/
#include <u.h>
#include <libc.h>
#include "String.h"
String*
s_unique(String *s)
{
String *p;
if(s->ref > 1){
p = s;
s = s_clone(p);
s_free(p);
}
return s;
}