From 84095be6aec08043683dfdcfba25f3eb6653ddf3 Mon Sep 17 00:00:00 2001 From: alandplm Date: Sat, 22 Feb 2020 21:05:01 -0300 Subject: [PATCH] Fixing the order of typedef arguments --- questions/answers/178.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/questions/answers/178.md b/questions/answers/178.md index cba9f06..bbe06ff 100644 --- a/questions/answers/178.md +++ b/questions/answers/178.md @@ -13,7 +13,7 @@ Using `typedef`, for example: ```c -typedef my_new_int_type int; +typedef int my_new_int_type; ```