2020-06-16 20:54:05 +02:00
|
|
|
// This file is part of river, a dynamic tiling wayland compositor.
|
|
|
|
//
|
2020-11-11 20:30:21 +01:00
|
|
|
// Copyright 2020 The River Developers
|
2020-06-16 20:54:05 +02:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2020-06-16 22:08:36 +02:00
|
|
|
const std = @import("std");
|
2021-06-23 15:56:38 +02:00
|
|
|
const os = std.os;
|
2020-06-16 22:08:36 +02:00
|
|
|
|
|
|
|
/// The global general-purpose allocator used throughout river's code
|
2020-06-19 14:31:53 +02:00
|
|
|
pub const gpa = std.heap.c_allocator;
|