Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
t089 committed Nov 22, 2024
1 parent 572c37a commit fc7bb90
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions Sources/Soto/Extensions/STS/Environment.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@
//
//===----------------------------------------------------------------------===//

#if canImport(Darwin)
import Darwin.C
#elseif canImport(Glibc)
import Glibc

#if canImport(Glibc)
import Glibc
#elseif canImport(Musl)
import Musl
import Musl
#elseif canImport(Darwin)
import Darwin.C
#else
#error("The Soto module was unable to identify your C library.")
#error("The Soto module was unable to identify your C library.")
#endif

enum Environment {
Expand Down

0 comments on commit fc7bb90

Please sign in to comment.