mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 18:21:47 +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).
7 lines
179 B
C
7 lines
179 B
C
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
ssize_t getdelim(char **buf, size_t *bufsiz, int delimiter, FILE *fp);
|
|
ssize_t getline(char **buf, size_t *bufsiz, FILE *fp);
|