llvm/lldb/test/API/commands/expression/import-std-module/sysroot/root/usr/include/c++/v1/algorithm

#include "stdio.h"

namespace std {
  // Makes sure we get a support file for this header.
  struct vector { int i; };

  __attribute__((__nodebug__))
  inline int myabs(int i = -123) {
    double nil;
    return i < 0 ? -i : i;
  }
}