Merge pull request #29 from penberg/stdint

Add stdint.h include to mvcc.h
This commit is contained in:
Pekka Enberg
2023-05-09 13:54:45 +03:00
committed by GitHub
2 changed files with 3 additions and 0 deletions

View File

@@ -4,3 +4,4 @@ include_guard = "MVCC_H"
line_length = 120
no_includes = true
style = "type"
sys_includes = ["stdint.h"]

View File

@@ -1,6 +1,8 @@
#ifndef MVCC_H
#define MVCC_H
#include <stdint.h>
typedef enum {
MVCC_OK = 0,
MVCC_IO_ERROR_WRITE = 778,