Commit9ccae337Recorded3 Apr 2026Repositorysigil-audio
Replace sigil-internal.h with public sigil/sigil.h header
Message
External packages should use the public API header, not the internal one. The internal header was removed/relocated in sigil 0.9.2.
Changed
.sigil/deps/sigil-stdlib | 1 +
src/c/audio.c | 2 +-
src/c/ogg-encode.c | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)Diff
.sigil/deps/sigil-stdlibadded
@@ -0,0 +1 @@
+1
/home/daviwil/.sigil/deps/codeberg-sigil-sigil-54f66e8ec446b65b75ab6f12454d2c0aa269f2c0/packages/sigil-stdlib 2
No newline at end of filesrc/c/audio.cmodified
@@ -8,7 +8,7 @@
8
* Music is streamed from disk via stb_vorbis. 9
*/ 10
−11
#include "sigil-internal.h"+11
#include "sigil/sigil.h" 12
13
#include <stdio.h> 14
#include <stdlib.h>src/c/ogg-encode.cmodified
@@ -2,7 +2,7 @@
2
* ogg-encode.c - OGG Vorbis encoding for sigil-audio 3
*/ 4
−5
#include "sigil-internal.h"+5
#include "sigil/sigil.h" 6
7
#include <stdio.h> 8
#include <stdlib.h>