Skip to content

Instantly share code, notes, and snippets.

@chmullig
chmullig / Makefile
Last active December 14, 2015 02:38
A little pointer program to help show exactly how pointer functions work.
CC = gcc
CFLAGS = -Wall -g
LDFAGS = -g
pointerfun:
pointerfun_clang: pointerfun.c
clang $(CFLAGS) $(LDFLAGS) -o pointerfun_clang pointerfun.c
pointerfun.o: