Skip to content

Commit

Permalink
Bump libr version: hide symbols in the .so
Browse files Browse the repository at this point in the history
  • Loading branch information
rootmos committed Dec 4, 2023
1 parent 4d9c9ad commit 60e34af
Show file tree
Hide file tree
Showing 3 changed files with 207 additions and 177 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION_MAJOR=0
VERSION_MINOR=1
VERSION_PATCH=0
VERSION_PATCH=1
4 changes: 2 additions & 2 deletions src/edid.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

// https://en.wikipedia.org/wiki/Extended_Display_Identification_Data#EDID_1.4_data_format

void edid_parse(struct edid* edid, void* buf, size_t len)
PRIVATE void edid_parse(struct edid* edid, void* buf, size_t len)
{
memset(edid, 0, sizeof(*edid));

Expand Down Expand Up @@ -53,7 +53,7 @@ void edid_parse(struct edid* edid, void* buf, size_t len)
edid->version_minor = p[19];
}

int edid_push(lua_State* L, const struct edid* edid)
PRIVATE int edid_push(lua_State* L, const struct edid* edid)
{
luaR_stack(L);

Expand Down
Loading

0 comments on commit 60e34af

Please sign in to comment.