diff options
author | David Robillard <d@drobilla.net> | 2022-06-06 21:01:12 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-06-08 22:01:15 -0400 |
commit | 8f505887090d0d6a16a0f3b06638fa297b9a4255 (patch) | |
tree | 28fb5c9fa2cc239f260ba207f923de2844b43488 /src/common.c | |
parent | 27ce10b5039e931eaad33e9499a630552d4e1f06 (diff) | |
download | pugl-8f505887090d0d6a16a0f3b06638fa297b9a4255.tar.gz pugl-8f505887090d0d6a16a0f3b06638fa297b9a4255.tar.bz2 pugl-8f505887090d0d6a16a0f3b06638fa297b9a4255.zip |
Separate platform.h from internal.h
This makes the internal header structure match the "kinds" of definition inside
Pugl: common implementations of public API, things available internally to
platform implementations, and things the platform must define.
Diffstat (limited to 'src/common.c')
-rw-r--r-- | src/common.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common.c b/src/common.c index 313f0d0..dc01da4 100644 --- a/src/common.c +++ b/src/common.c @@ -1,8 +1,11 @@ // Copyright 2012-2022 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC +// Common implementations of public API functions in the core library + #include "internal.h" +#include "platform.h" #include "types.h" #include "pugl/pugl.h" |