set code owner

This commit is contained in:
Arne Döring
2018-10-18 08:34:15 +02:00
parent 07f76c3ef9
commit f84bf45f17

View File

@@ -1,3 +1,12 @@
#
#
# The Nim Compiler
#
# See the file "copying.txt", included in this
# distribution, for details about the copyright.
#
## code owner: Arne Döring
## e-mail: arne.doering@gmx.net
proc align(address, alignment: BiggestInt): BiggestInt =
result = (address + (alignment - 1)) and not (alignment - 1)