summaryrefslogtreecommitdiff
path: root/bitlength/producer.c
blob: b67aea12816a22c0bfe3b506189bac3ff3ab0dcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <inttypes.h>
#include <stdio.h>
#include "Clean.h"
#include "producer.h"

int* produce(int* n)
{
    n = (int*) ((int64_t) n << 1);
    printf("%20p - ", n);
    return n;
}