Files
clang-p2996/llvm/projects/sample/lib/sample/sample.c
Chandler Carruth 56869f22c4 Move DataTypes.h to include/llvm/System, update all users. This breaks the last
direct inclusion edge from System to Support.

llvm-svn: 85086
2009-10-26 01:35:46 +00:00

26 lines
416 B
C

/*
* File: sample.c
*
* Description:
* This is a sample source file for a library. It helps to demonstrate
* how to setup a project that uses the LLVM build system, header files,
* and libraries.
*/
#include <stdio.h>
#include <stdlib.h>
/* LLVM Header File
#include "llvm/System/DataTypes.h"
*/
/* Header file global to this project */
#include "sample.h"
int
compute_sample (int a)
{
return a;
}