Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root = true

[{*.{c,h,},Makefile,Makefile.*}]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = tab
indent_size = 8
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ LIBRTAS_LIBRARY_VERSION = $(LIBRTAS_CURRENT):$(LIBRTAS_REVISION):$(LIBRTAS_AGE)
lib_LTLIBRARIES += librtas.la
librtas_la_LDFLAGS = -version-info $(LIBRTAS_LIBRARY_VERSION) -lpthread
librtas_la_SOURCES = \
librtas_src/vpd.c \
librtas_src/ofdt.c \
librtas_src/syscall_calls.c \
librtas_src/syscall_rmo.c \
librtas_src/sysparm.c
librtas_src/sysparm.c \
librtas_src/vpd.c

library_include_HEADERS += librtas_src/librtas.h
noinst_HEADERS += \
Expand Down
1 change: 1 addition & 0 deletions librtas_src/internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#define LIBRTAS_INTERNAL_H

#include <stdint.h>
#include <stdio.h>

#define WORK_AREA_SIZE 4096
#define MAX_ARGS 16
Expand Down