Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

freebsd-arm-size_t.c
// RUN: %clang_cc1 -triple arm-unknown-freebsd10.0 -verify %s
// expected-no-diagnostics

/* Define a size_t as expected for FreeBSD ARM */
typedef unsigned int size_t;

/* Declare a builtin function that uses size_t */
void *malloc(size_t);