Skip to content

Commit

Permalink
Add missing definition for uint64_t, required by P4est_jll v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sloede committed May 19, 2021
1 parent 6a750c1 commit 7fbeb92
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/libp4est.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
using MPI: MPI_Datatype, MPI_Comm, MPI_File

# Introduce standard integer types
const size_t = 𝐣𝐥.Csize_t
const ssize_t = 𝐣𝐥.Cssize_t
const int8_t = 𝐣𝐥.Int8
const int16_t = 𝐣𝐥.Int16
const int32_t = 𝐣𝐥.Int32
const int64_t = 𝐣𝐥.Int64
const size_t = 𝐣𝐥.Csize_t
const ssize_t = 𝐣𝐥.Cssize_t
const int8_t = 𝐣𝐥.Int8
const int16_t = 𝐣𝐥.Int16
const int32_t = 𝐣𝐥.Int32
const int64_t = 𝐣𝐥.Int64
const uint64_t = 𝐣𝐥.UInt64

# Forward declare standard library types
𝐣𝐥.@cstruct FILE
Expand Down

0 comments on commit 7fbeb92

Please sign in to comment.