Oh GACK! src-clean doesn't quite work that easily since cleandist rebuilds the
[unix-history] / gnu / usr.bin / gcc1 / gnulib / longlong / anddi3.c
CommitLineData
15637ed4
RG
1#include "longlong.h"
2
3long long
4__anddi3 (u, v)
5 long long u, v;
6{
7 long_long w;
8 long_long uu, vv;
9
10 uu.ll = u;
11 vv.ll = v;
12
13 w.s.high = uu.s.high & vv.s.high;
14 w.s.low = uu.s.low & vv.s.low;
15
16 return w.ll;
17}