Stop using TRUE and FALSE for exit status.
diff --git a/cut.c b/cut.c
index 2d313cc..b281fa2 100644
--- a/cut.c
+++ b/cut.c
@@ -241,5 +241,5 @@
 		}
 	}
 
-	return 0;
+	return EXIT_SUCCESS;
 }