Skip to content

Commit

Permalink
Add conditional import
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbean committed Aug 13, 2018
1 parent a8a4045 commit 06608e5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Sources/SpelledPitch/SpelledPitch.swift
Expand Up @@ -6,7 +6,13 @@
//
//

import Darwin
#if os(Linux)
import Glibc
#else
import Darwin.C
#endif


import Pitch

public struct SpelledPitch {
Expand Down

0 comments on commit 06608e5

Please sign in to comment.