blob: f67863b1bacbf52e4223087455953fef47489c9e [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library zircon.listnode;
[repr="C"]
struct ListNode {
ListNode? prev;
ListNode? next;
};