Issue #3366: Add expm1 function to math module.  Thanks Eric Smith for
testing on Windows.
diff --git a/Modules/Setup.dist b/Modules/Setup.dist
index 5e69a60..3a6c973 100644
--- a/Modules/Setup.dist
+++ b/Modules/Setup.dist
@@ -169,7 +169,7 @@
 
 #array arraymodule.c	# array objects
 #cmath cmathmodule.c # -lm # complex math library functions
-#math mathmodule.c # -lm # math library functions, e.g. sin()
+#math mathmodule.c _math.c # -lm # math library functions, e.g. sin()
 #_struct _struct.c	# binary structure packing/unpacking
 #time timemodule.c # -lm # time operations and variables
 #operator operator.c	# operator.add() and similar goodies