15 lines
301 B
C
15 lines
301 B
C
/* cygwin/bits.h
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
#ifndef _CYGWIN_BITS_H
|
|
#define _CYGWIN_BITS_H
|
|
|
|
#define _BIT(_bit) (1U << (_bit))
|
|
|
|
#endif /* _CYGWIN_BITS_H */
|