/* * Copyright 2020, Haiku, Inc. * Distributed under the terms of the MIT License. */ #ifndef _AUTO_DELETER_OS_H #define _AUTO_DELETER_OS_H #include #include namespace BPrivate { typedef HandleDeleter AreaDeleter; typedef HandleDeleter SemDeleter; typedef HandleDeleter PortDeleter; } using ::BPrivate::AreaDeleter; using ::BPrivate::SemDeleter; using ::BPrivate::PortDeleter; #endif // _AUTO_DELETER_OS_H