dummy.c   [plain text]


/* ===---------- dummy.c - Implements dummy function, for bringup -----------===
 *
 *                     The LLVM Compiler Infrastructure
 *
 * This file is dual licensed under the MIT and the University of Illinois Open
 * Source Licenses. See LICENSE.TXT for details.
 *
 * ===----------------------------------------------------------------------===
 */

static void dummy(void) __attribute__((used));

static void dummy(void) {}