Skip to content

Commit 7c35475

Browse files
authored
CTypes: make typealiases public
Explicitly mark the `CChar` and `CInt` `typealias`es `public` as they are meant to be available to users of the standard library.
1 parent 19e3f46 commit 7c35475

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/Core/CTypes.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
// All Rights Reserved.
33
// SPDX-License-Identifier: BSD-3
44

5-
typealias CChar = Int8
5+
public typealias CChar = Int8
66

7-
typealias CInt = Int32
7+
public typealias CInt = Int32

0 commit comments

Comments
 (0)