Remove empty lines
[oota-llvm.git] / lib / Support / Unix / Signals.inc
index 912abc3b2248141bd336dd5b774ceed82068c80e..9176cd14812a0738816af5e18becb140c66c48a8 100644 (file)
@@ -113,7 +113,7 @@ static void RegisterHandlers() {
   // during handling an actual signal because you can't safely call new in a
   // signal handler.
   *SignalsMutex;
-  
+
   // If the handlers are already registered, we're done.
   if (NumRegisteredSignals != 0) return;
 
@@ -157,7 +157,7 @@ static void RemoveFilesToRemove() {
     // super-user permissions.
     if (!S_ISREG(buf.st_mode))
       continue;
-  
+
     // Otherwise, remove the file. We ignore any errors here as there is nothing
     // else we can do.
     unlink(path);