Getting rid of pre-Carbon (MacOS8) support. All code depending on
TARGET_API_MAC_OS8 (or !TARGET_API_MAC_CARBON) is gone. Also some
TARGET_API_MAC_OSX conditional code is gone, because it is no longer
used on OSX-only Python (only in MacPython-OS9).
diff --git a/Mac/Modules/snd/sndscan.py b/Mac/Modules/snd/sndscan.py
index fc358a0..a287c73 100644
--- a/Mac/Modules/snd/sndscan.py
+++ b/Mac/Modules/snd/sndscan.py
@@ -49,25 +49,21 @@
 			'rate48khz',
 			'rate44khz',
 			'kInvalidSource',
+			# OS8 only:
+			'MACEVersion',
+			'SPBRecordToFile',
+			'Exp1to6',
+			'Comp6to1',
+			'Exp1to3',
+			'Comp3to1',
+			'SndControl',
+			'SndStopFilePlay',
+			'SndStartFilePlay',
+			'SndPauseFilePlay',
+			'SndRecordToFile',
 
 			]
 
-	def makegreylist(self):
-		return [
-			('#if !TARGET_API_MAC_CARBON', [
-				'MACEVersion',
-				'SPBRecordToFile',
-				'Exp1to6',
-				'Comp6to1',
-				'Exp1to3',
-				'Comp3to1',
-				'SndControl',
-				'SndStopFilePlay',
-				'SndStartFilePlay',
-				'SndPauseFilePlay',
-				'SndRecordToFile',
-			])]
-
 	def makeblacklisttypes(self):
 		return [
 			"GetSoundVol",