mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-24 08:18:33 +00:00
direct inclusion edge from System to Support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85086 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
416 B
C
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;
|
|
}
|
|
|