mirror of
https://github.com/idris-lang/Idris2.git
synced 2025-01-05 23:18:06 +03:00
60d597fccd
Pragma once is supported by all compilers for the last ten years. Better use it instead of include guards (which use different styles in different files).
18 lines
322 B
C
18 lines
322 B
C
#pragma once
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <pthread.h>
|
|
|
|
#include "datatypes.h"
|
|
#include "memoryManagement.h"
|
|
#include "mathFunctions.h"
|
|
#include "runtime.h"
|
|
#include "stringOps.h"
|
|
#include "buffer.h"
|
|
#include "clock.h"
|
|
#include "casts.h"
|
|
#include "conCaseHelper.h"
|
|
#include "prim.h"
|