mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 21:53:48 +01:00
14 lines
390 B
C
14 lines
390 B
C
/* Copyright (c) 2003-2004, Roger Dingledine
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
|
* Copyright (c) 2007-2018, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
#ifndef TOR_INTMATH_ADDSUB_H
|
|
#define TOR_INTMATH_ADDSUB_H
|
|
|
|
#include "lib/cc/torint.h"
|
|
|
|
uint32_t tor_add_u32_nowrap(uint32_t a, uint32_t b);
|
|
|
|
#endif /* !defined(TOR_INTMATH_MULDIV_H) */
|