Código PHP:
</head>
<body>
<?php
// ob_start(); // tambien probe sacando y colocando esta funcion y igual
include("conex.php");
$link=Conectarse();
$id=$_GET['id'];
mysql_query("delete from cliente where rut_cliente = '$id'",$link);
header("Location: borrar.php"); //<------ esta linea tira el error
?>
</body>
</html>
Si mal no me equivoco el header no debe tener ninguna salida antes de ella, y en este caso no tiene salidas antes se su ejecucion tambien no hay espacios, realmente nose que es.
^^