Skip to content

Commit

Permalink
trying to fix both docs and freebsd build.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
  • Loading branch information
FedeDP committed Feb 4, 2022
1 parent ef66004 commit 07e988b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Samples/Easy/pippo.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define _POSIX_C_SOURCE 199309L
#define _POSIX_C_SOURCE 200809L

#include <module/mod_easy.h>
#include <module/mem/mem.h>
Expand Down
2 changes: 1 addition & 1 deletion Samples/Task/pippo.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define _POSIX_C_SOURCE 199309L
#define _POSIX_C_SOURCE 200809L

#include <module/mod_easy.h>
#include <module/ctx.h>
Expand Down
33 changes: 17 additions & 16 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
site_name: Libmodule Documentation
site_description: C simple and elegant implementation of an Actor library
site_author: Federico Di Pierro
repo_url: https://github.com/FededDP/libmodule/

pages:
- Index: index.md
- Concepts: concepts/concepts.md
- Module: concepts/mod.md
- Context: concepts/ctx.md
- Core API: core/core.md
- Module API: core/mod.md
- Context API: core/ctx.md
- Data Structures API: structs/structs.md
- Map: structs/map.md
- List: structs/list.md
- Queue: structs/queue.md
- Stack: structs/stack.md
- Bst: structs/bst.md
- Reference counted memory: mem/mem.md
- Thread Pool API: thpool/thpool.md
nav:
- Index: index.md
- Concepts: concepts/concepts.md
- Module: concepts/mod.md
- Context: concepts/ctx.md
- Core API: core/core.md
- Module API: core/mod.md
- Context API: core/ctx.md
- Data Structures API: structs/structs.md
- Map: structs/map.md
- List: structs/list.md
- Queue: structs/queue.md
- Stack: structs/stack.md
- Bst: structs/bst.md
- Reference counted memory: mem/mem.md
- Thread Pool API: thpool/thpool.md
theme: readthedocs

markdown_extensions:
Expand Down
1 change: 1 addition & 0 deletions tests/test_mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <stddef.h>
#include <stdalign.h>
#include <stdlib.h>
#include <time.h>

void test_mem(void **state) {
(void) state; /* unused */
Expand Down

0 comments on commit 07e988b

Please sign in to comment.