Revision 78498729e4523d5ee32508262cc70d7a41097bc8 authored by Junio C Hamano on 26 October 2016, 20:14:50 UTC, committed by Junio C Hamano on 26 October 2016, 20:14:50 UTC
A hot-fix for a test added by a recent topic that went to both
'master' and 'maint' already.

* tg/add-chmod+x-fix:
  t3700: fix broken test under !SANITY
2 parent s 7425fe1 + 76e368c
Raw File
prompt.h
#ifndef PROMPT_H
#define PROMPT_H

#define PROMPT_ASKPASS (1<<0)
#define PROMPT_ECHO    (1<<1)

char *git_prompt(const char *prompt, int flags);

#endif /* PROMPT_H */
back to top