summaryrefslogtreecommitdiff
path: root/rushs/tinyprintf/pointer_swap/pointer_swap.c
diff options
context:
space:
mode:
Diffstat (limited to 'rushs/tinyprintf/pointer_swap/pointer_swap.c')
-rw-r--r--rushs/tinyprintf/pointer_swap/pointer_swap.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/rushs/tinyprintf/pointer_swap/pointer_swap.c b/rushs/tinyprintf/pointer_swap/pointer_swap.c
deleted file mode 100644
index 32ceb84..0000000
--- a/rushs/tinyprintf/pointer_swap/pointer_swap.c
+++ /dev/null
@@ -1,6 +0,0 @@
-void pointer_swap(int **a, int **b)
-{
- int *tmp = *a;
- *a = *b;
- *b = tmp;
-}