Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

malloc-protoype.c
// RUN: %clang_analyze_cc1 -w -analyzer-checker=core,unix.Malloc -verify %s
// expected-no-diagnostics

// Test that strange prototypes doesn't crash the analyzer

void malloc(int i);
void valloc(int i);

void test1(void)
{
  malloc(1);
}

void test2(void)
{
  valloc(1);
}